include "sys.m"; sys:= load Sys Sys->PATH; seek: fn(fd: ref FD, off, start: int): int;
The start argument can have the following values:
SEEKSTART
|
The offset is set to off bytes from the start of the file.
|
SEEKRELA
|
The offset is set to its current value plus off bytes.
|
SEEKEND
|
The offset is set to the size of the file plus off bytes.
|
The new file offset value is returned.
See Also
Limbo System Modules, open, pctl, read, and bufio