From 70702af1370e44e32fb2c3c507e4759a187b4fe5 Mon Sep 17 00:00:00 2001 From: Leo C Date: Thu, 8 Sep 2016 19:15:27 +0200 Subject: Import fatfs R0.12b --- fatfs/doc/en/size.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '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)
 
-- cgit v1.2.3