X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/5366852335044c1e68a5c32548d3051cc943552f..70702af1370e44e32fb2c3c507e4759a187b4fe5:/fatfs/doc/en/tell.html?ds=sidebyside 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)