From 20236a8a990cae729bca1f7a4e0d619e92a5e37d Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 20 Dec 2014 21:15:16 +0000 Subject: stmhal: Upgrade to latest fatfs driver. --- stmhal/fatfs/doc/en/eof.html | 62 -------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 stmhal/fatfs/doc/en/eof.html (limited to 'stmhal/fatfs/doc/en/eof.html') diff --git a/stmhal/fatfs/doc/en/eof.html b/stmhal/fatfs/doc/en/eof.html deleted file mode 100644 index 384c8d883..000000000 --- a/stmhal/fatfs/doc/en/eof.html +++ /dev/null @@ -1,62 +0,0 @@ - - -
- - - - - -The f_eof function tests for end-of-file on a file.
--int f_eof ( - FIL* fp /* [IN] File object */ -); --
The f_eof() function returns a non-zero value if the read/write pointer has reached end of the file; otherwise it returns a zero.
-In this revision, this function is implemented as a macro.
-
-#define f_eof(fp) (((fp)->fptr) == ((fp)->fsize) ? 1 : 0)
-
-Always available.
-