Handbook
Glossary
read-file-block ( path n -- bytes )
Vocabulary
tftp
Inputs
path
an
object
n
an
object
Outputs
bytes
an
object
Definition
USING:
io
io.encodings.binary
io.files
kernel
math
;
IN:
tftp
:
read-file-block
( path n -- bytes )
binary
swap
[
512
*
seek-absolute
seek-input
512
read
]
curry
with-file-reader
;