The f_tell function gets the current read/write pointer of a file.
DWORD f_tell ( FIL* fp /* [IN] File object */ );
Returns current read/write pointer of the file.
In this revision, the f_tell() function is implemented as a macro.
#define f_tell(fp) ((fp)->fptr)
Always available.