X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/5366852335044c1e68a5c32548d3051cc943552f..0f3b947bda5f34662a611272b9f12199e0da9aca:/fatfs/doc/en/error.html diff --git a/fatfs/doc/en/error.html b/fatfs/doc/en/error.html deleted file mode 100644 index 7405d9e..0000000 --- a/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

- -