Module sys/seek

sys/seek

File position control.

Synchronous wrapper for lseek. Returns resulting absolute file offset on success, -errno on failure.

Functions

lseek function
fn(fd : i32, offset : i64, whence : i32) -> i64

Parameters

NameTypeNotes
fdi32
offseti64
whencei32

Returns: i64

Constants

SEEK_SET constant i32

Value: 0

SEEK_CUR constant i32

Value: 1

SEEK_END constant i32

Value: 2