This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
int fgetpos(FILE *f, fpos_t *pos);
fgetpos() returns the current file position in *pos. This value can be used to later set the position to this one using fsetpos().
Non-zero, if there was an error; zero otherwise.
fseek() and