X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/e1deb7c3bc0500aabf5d099adb231f6d1d27f01d..b30c4e8f1aef96f6fdc93da9f125545f5f74d06e:/fatfs/doc/en/size.html diff --git a/fatfs/doc/en/size.html b/fatfs/doc/en/size.html index bb786c6..08990c6 100644 --- a/fatfs/doc/en/size.html +++ b/fatfs/doc/en/size.html @@ -15,7 +15,7 @@

f_size

The f_size function gets the size of a file.

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

Description

-

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

+

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

-#define f_size(fp) ((fp)->fsize)
+#define f_size(fp) ((fp)->obj.objsize)