From dd38d907244bc0e483c3d760f2ba464a394ec229 Mon Sep 17 00:00:00 2001 From: Dave Hylands Date: Tue, 11 Mar 2014 23:55:41 -0700 Subject: Initial checkin with STM HAL This compiles and links, but hasn't been tested on a board yet and even if it was run, it doesn't currently do anything. --- stmhal/fatfs/doc/ja/eof.html | 62 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 stmhal/fatfs/doc/ja/eof.html (limited to 'stmhal/fatfs/doc/ja/eof.html') diff --git a/stmhal/fatfs/doc/ja/eof.html b/stmhal/fatfs/doc/ja/eof.html new file mode 100644 index 000000000..b1f0e1ac4 --- /dev/null +++ b/stmhal/fatfs/doc/ja/eof.html @@ -0,0 +1,62 @@ + + +
+ + + + + +リード/ライト・ポインタがファイル終端に達しているかどうか調べます。.
++int f_eof ( + FIL* fp /* [IN] ファイル・オブジェクト */ +); ++
リード/ライト・ポインタがファイル終端にあり読み出すデータがない場合は、0以外の値を返します。それ以外の時は0を返します。
+f_eof関数は、現リビジョンではマクロとして実装されています。
+
+#define f_eof(fp) (((fp)->fptr) == ((fp)->fsize) ? 1 : 0)
+
+常に使用可能。
+