A function with same signature and semantics than fseek.
Origin: position from which offset is added
SEEK_SET = beginning of file.
SEEK_CUR = Current position of file pointer.
SEEK_END = end of file.
This function returns zero if successful, or else it returns a non-zero value.
Note: c_long offsets in gamut can always be cast to int without loss.
A function with same signature and semantics than fseek. Origin: position from which offset is added SEEK_SET = beginning of file. SEEK_CUR = Current position of file pointer. SEEK_END = end of file. This function returns zero if successful, or else it returns a non-zero value. Note: c_long offsets in gamut can always be cast to int without loss.