summaryrefslogtreecommitdiff
path: root/fatfs/doc/en/eof.html
diff options
context:
space:
mode:
Diffstat (limited to 'fatfs/doc/en/eof.html')
-rw-r--r--fatfs/doc/en/eof.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/fatfs/doc/en/eof.html b/fatfs/doc/en/eof.html
index 337697b..2e87506 100644
--- a/fatfs/doc/en/eof.html
+++ b/fatfs/doc/en/eof.html
@@ -33,13 +33,13 @@ int f_eof (
<div class="para ret">
<h4>Return Values</h4>
-<p>The <tt>f_eof()</tt> function returns a non-zero value if the read/write pointer has reached end of the file; otherwise it returns a zero.</p>
+<p>The <tt>f_eof</tt> function returns a non-zero value if the read/write pointer has reached end of the file; otherwise it returns a zero.</p>
</div>
<div class="para desc">
<h4>Description</h4>
-<p>In this revision, this function is implemented as a macro.</p>
+<p>In this revision, this function is implemented as a macro. It does not have any validation and mutual exclusion.</p>
<pre>
<span class="k">#define</span> f_eof(fp) ((int)((fp)->fptr == (fp)->fsize))
</pre>