summaryrefslogtreecommitdiff
path: root/doc/libstddjb/allreadwrite.html
diff options
context:
space:
mode:
authorColin Booth <colin@heliocat.net>2020-03-30 17:48:53 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2020-03-30 18:20:42 +0000
commit5b4169f484ad2aac76c816503142067363b2c332 (patch)
tree295faf13a148eefaa20e0eda7b9c1f61381ebc25 /doc/libstddjb/allreadwrite.html
parentab3af99b8537d7b106c7857ae29c9494926cef03 (diff)
downloadskalibs-5b4169f484ad2aac76c816503142067363b2c332.tar.xz
skalibs: fix html errors
Signed-off-by: Colin Booth <colin@heliocat.net>
Diffstat (limited to 'doc/libstddjb/allreadwrite.html')
-rw-r--r--doc/libstddjb/allreadwrite.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/libstddjb/allreadwrite.html b/doc/libstddjb/allreadwrite.html
index 3e6c9c9..0dd5ea0 100644
--- a/doc/libstddjb/allreadwrite.html
+++ b/doc/libstddjb/allreadwrite.html
@@ -124,7 +124,7 @@ function.
<p>
<code> size_t allread (int fd, char *s, size_t len) </code> <br />
-Equivalent to <code> allreadwrite(&fd_read, fd, s, len) </code>: attempts
+Equivalent to <code> allreadwrite(&amp;fd_read, fd, s, len) </code>: attempts
to read <em>len</em> bytes from <em>fd</em> into <em>s</em>, looping around
<tt>fd_read()</tt> if necessary, until either <em>len</em> bytes are read or
an error occurs. EOF is reported as EPIPE.
@@ -132,7 +132,7 @@ an error occurs. EOF is reported as EPIPE.
<p>
<code> size_t allwrite (int fd, char const *s, size_t len) </code> <br />
-Equivalent to <code> allreadwrite((iofunc_t *)&fd_write, fd, s, len) </code>:
+Equivalent to <code> allreadwrite((iofunc_t *)&amp;fd_write, fd, s, len) </code>:
attempts to write <em>len</em> bytes from <em>s</em> to <em>fd</em>, looping
around <tt>fd_write()</tt> if necessary, until either <em>len</em> bytes are
written or an error occurs.