lseeki64
lseeki64 is a function from the Microsoft C runtime used to reposition the file offset of an open file descriptor using a 64-bit offset. It provides large-file support on 32-bit Windows and is analogous to the POSIX lseek with a 64-bit offset.
The canonical name in the MSVC runtime is _lseeki64; documentation and code sometimes refer to lseeki64 without
Prototype and behavior typically resemble: long long _lseeki64(int fd, long long offset, int origin); The function
Usage examples include opening a file descriptor and seeking to a position using a 64-bit offset, for
Portability notes: _lseeki64 is not part of the C standard and is specific to the Windows/MSVC runtime.