=====fgetpos===== Syntax: #include int fgetpos( FILE *stream, fpos_t *position ); The fgetpos() function stores the file position indicator of the given file stream in the given position variable. The position variable is of type fpos_t (which is defined in cstdio) and is an object that can hold every possible position in a FILE. fgetpos() returns zero upon success, and a non-zero value upon failure. Related Topics: [[fseek]], [[fsetpos]], [[ftell]]