summaryrefslogtreecommitdiff
path: root/doc/libstddjb/allreadwrite.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/libstddjb/allreadwrite.html')
-rw-r--r--doc/libstddjb/allreadwrite.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/libstddjb/allreadwrite.html b/doc/libstddjb/allreadwrite.html
index 0dd5ea0..2619153 100644
--- a/doc/libstddjb/allreadwrite.html
+++ b/doc/libstddjb/allreadwrite.html
@@ -46,9 +46,9 @@ use higher-level APIs such as <a href="buffer.html">buffer</a> and
<p>
<code> typedef ssize_t iofunc_t (int fd, char *buf, size_t len) </code> <br />
This is the simplified type of IO functions such as
-<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/read.html">read()</a>
+<a href="https://www.opengroup.org/onlinepubs/9699919799/functions/read.html">read()</a>
and
-<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/write.html">write()</a>.
+<a href="https://www.opengroup.org/onlinepubs/9699919799/functions/write.html">write()</a>.
</p>
<p>
@@ -97,28 +97,28 @@ set errno to EWOULDBLOCK or EAGAIN.
<p>
<code> ssize_t fd_read (int fd, char *s, size_t len) </code> <br />
<a href="safewrappers.html">Safe wrapper</a> around the
-<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/read.html">read()</a>
+<a href="https://www.opengroup.org/onlinepubs/9699919799/functions/read.html">read()</a>
function.
</p>
<p>
<code> ssize_t fd_write (int fd, char const *s, size_t len) </code> <br />
<a href="safewrappers.html">Safe wrapper</a> around the
-<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/write.html">write()</a>
+<a href="https://www.opengroup.org/onlinepubs/9699919799/functions/write.html">write()</a>
function.
</p>
<p>
<code> ssize_t fd_recv (int fd, char *s, size_t len, unsigned int flags) </code> <br />
<a href="safewrappers.html">Safe wrapper</a> around the
-<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/recv.html">recv()</a>
+<a href="https://www.opengroup.org/onlinepubs/9699919799/functions/recv.html">recv()</a>
function.
</p>
<p>
<code> ssize_t fd_send (int fd, char const *s, size_t len, unsigned int flags) </code> <br />
<a href="safewrappers.html">Safe wrapper</a> around the
-<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/send.html">send()</a>
+<a href="https://www.opengroup.org/onlinepubs/9699919799/functions/send.html">send()</a>
function.
</p>