From efa13a879df590ce0043a5b4f97597484bf264e1 Mon Sep 17 00:00:00 2001 From: inmarket Date: Wed, 13 Aug 2014 15:48:16 +1000 Subject: Move 3rd Party source to a new directory. Rationalise Fatfs code and fix a couple of configuration issues. --- src/gfile/fatfs/doc/en/error.html | 62 --------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 src/gfile/fatfs/doc/en/error.html (limited to 'src/gfile/fatfs/doc/en/error.html') diff --git a/src/gfile/fatfs/doc/en/error.html b/src/gfile/fatfs/doc/en/error.html deleted file mode 100644 index 7405d9e0..00000000 --- a/src/gfile/fatfs/doc/en/error.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - -FatFs - f_error - - - - -
-

f_error

-

The f_error tests for an error on a file.

-
-int f_error (
-  FIL* fp   /* [IN] File object */
-);
-
-
- - -
-

Parameters

-
-
fp
-
Pointer to the open file object structure.
-
-
- - -
-

Return Values

-

Returns a non-zero value if a hard error has occured; otherwise it returns a zero.

-
- - -
-

Description

-

In this revision, this function is implemented as a macro.

-
-#define f_error(fp) (((fp)->flag & FA__ERROR) ? 1 : 0)
-
-
- - -
-

QuickInfo

-

Always available.

-
- - -
-

See Also

-

f_open, FIL

-
- -

Return

- - -- cgit v1.2.3