Function nix::unistd::lseek64

source ยท
pub fn lseek64<Fd: AsFd>(
    fd: Fd,
    offset: off64_t,
    whence: Whence,
) -> Result<off64_t>
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.