X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/05437fb4cdb907816a4fc3ffafa2617fcf33266a..b30c4e8f1aef96f6fdc93da9f125545f5f74d06e:/fatfs/doc/en/tell.html diff --git a/fatfs/doc/en/tell.html b/fatfs/doc/en/tell.html index 93d03c9..7e0673c 100644 --- a/fatfs/doc/en/tell.html +++ b/fatfs/doc/en/tell.html @@ -15,7 +15,7 @@

f_tell

The f_tell function gets the current read/write pointer of a file.

-DWORD f_tell (
+FSIZE_t f_tell (
   FIL* fp   /* [IN] File object */
 );
 
@@ -39,7 +39,7 @@ DWORD f_tell (

Description

-

In this revision, the f_tell() function is implemented as a macro.

+

In this revision, the f_tell function is implemented as a macro. It does not have any validation and mutual exclusion.

 #define f_tell(fp) ((fp)->fptr)