diff options
author | 2005-07-26 03:30:25 +0000 | |
---|---|---|
committer | 2005-07-26 03:30:25 +0000 | |
commit | 2f2ed4fb1c1c50ba362ab9d8bcbb47d714c9eecd (patch) | |
tree | 083f8216358973290d0918f833b769ce5465dc87 /lib/libc/stdio/funopen.3 | |
parent | clarify description of 'c' conversion; ok millert, jmc (diff) | |
download | wireguard-openbsd-2f2ed4fb1c1c50ba362ab9d8bcbb47d714c9eecd.tar.xz wireguard-openbsd-2f2ed4fb1c1c50ba362ab9d8bcbb47d714c9eecd.zip |
- typos, punctuation, spacing, macro, layout, etc. fixes
- avoid first person
ok jmc
Diffstat (limited to 'lib/libc/stdio/funopen.3')
-rw-r--r-- | lib/libc/stdio/funopen.3 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/libc/stdio/funopen.3 b/lib/libc/stdio/funopen.3 index a3a71865119..3e60ed61536 100644 --- a/lib/libc/stdio/funopen.3 +++ b/lib/libc/stdio/funopen.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: funopen.3,v 1.12 2005/07/26 03:25:01 jaredy Exp $ +.\" $OpenBSD: funopen.3,v 1.13 2005/07/26 03:30:25 jaredy Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -40,11 +40,14 @@ .Sh SYNOPSIS .Fd #include <stdio.h> .Ft FILE * -.Fn funopen "const void *cookie" "int (*readfn)(void *, char *, int)" "int (*writefn)(void *, const char *, int)" "fpos_t (*seekfn)(void *, fpos_t, int)" "int (*closefn)(void *)" +.Fn funopen "const void *cookie" "int (*readfn)(void *, char *, int)" \ + "int (*writefn)(void *, const char *, int)" \ + "fpos_t (*seekfn)(void *, fpos_t, int)" \ + "int (*closefn)(void *)" .Ft FILE * -.Fn fropen "const void *cookie" "int (*readfn)(void *, char *, int)" +.Fn fropen "const void *cookie" "int (*readfn)(void *, char *, int)" .Ft FILE * -.Fn fwopen "const void *cookie" "int (*writefn)(void *, const char *, int)" +.Fn fwopen "const void *cookie" "int (*writefn)(void *, const char *, int)" .Sh DESCRIPTION The .Fn funopen |