pub fn lseek64(fd: RawFd, offset: off64_t, whence: Whence) -> Result<off64_t>
Available on crate feature
fs
only.Expand description
Move the read/write file offset.
Unlike lseek
, it takes a 64-bit argument even on platforms where libc::off_t
is
32 bits.