Defined in header <cstdio> int fseek( std::FILE* stream, long offset, int origin );
Sets the file position indicator for the file stream stream.
If the stream is open in binary mode, the new position is exactly offset bytes measured from the beginning of the file if origin is SEEK_SET, from the current file position if origin is SEEK_CUR, and from the end of the file if origin is SEEK_END. Binary streams are not required to support SEEK_END, in particular if additional null