summaryrefslogtreecommitdiff
path: root/fatfs/doc/en/tell.html
diff options
context:
space:
mode:
Diffstat (limited to 'fatfs/doc/en/tell.html')
-rw-r--r--fatfs/doc/en/tell.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/fatfs/doc/en/tell.html b/fatfs/doc/en/tell.html
index 93d03c9..7e0673c 100644
--- a/fatfs/doc/en/tell.html
+++ b/fatfs/doc/en/tell.html
@@ -15,7 +15,7 @@
<h2>f_tell</h2>
<p>The f_tell function gets the current read/write pointer of a file.</p>
<pre>
-DWORD f_tell (
+FSIZE_t f_tell (
FIL* <span class="arg">fp</span> <span class="c">/* [IN] File object */</span>
);
</pre>
@@ -39,7 +39,7 @@ DWORD f_tell (
<div class="para desc">
<h4>Description</h4>
-<p>In this revision, the <tt>f_tell()</tt> function is implemented as a macro.</p>
+<p>In this revision, the <tt>f_tell</tt> function is implemented as a macro. It does not have any validation and mutual exclusion.</p>
<pre>
<span class="k">#define</span> f_tell(fp) ((fp)->fptr)
</pre>