fseek is a C function belonging to the ANSI C standard library, and included in stdio.h. Its purpose is to change the file position indicator for the specified file or stream.
fseek()
is a C function belonging to the ANSI C standard library, and included in the file stdio.h
. Its purpose is to change the file position indicator for the specified file or stream. Because fseek uses 32 bit values on many platforms it has a limitation of maximum 2 gigabyte seeks. fseeko64 would be used for larger offsets.
See also