diff options
Diffstat (limited to 'man/man3')
95 files changed, 162 insertions, 162 deletions
diff --git a/man/man3/aio_suspend.3 b/man/man3/aio_suspend.3 index 4b63200160..8a3931d993 100644 --- a/man/man3/aio_suspend.3 +++ b/man/man3/aio_suspend.3 @@ -14,7 +14,7 @@ Real-time library .P .B "#include <aio.h>" .P -.BI "int aio_suspend(int " n ; +.BR "int aio_suspend(" "int n;" .BI " const struct aiocb *const " aiocb_list [ n "], int " n , .BI " const struct timespec *restrict " timeout ); .fi diff --git a/man/man3/arc4random.3 b/man/man3/arc4random.3 index 1068f6c5db..1b9c85d13b 100644 --- a/man/man3/arc4random.3 +++ b/man/man3/arc4random.3 @@ -16,7 +16,7 @@ Standard C library .P .B uint32_t arc4random(void); .BI "uint32_t arc4random_uniform(uint32_t " upper_bound ); -.BI "void arc4random_buf(size_t " n ; +.BR "void arc4random_buf(" "size_t n;" .BI " void " buf [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/backtrace.3 b/man/man3/backtrace.3 index ca44623aa7..420b2551c9 100644 --- a/man/man3/backtrace.3 +++ b/man/man3/backtrace.3 @@ -33,12 +33,12 @@ Standard C library .nf .B #include <execinfo.h> .P -.BI "int backtrace(int " size ; +.BR "int backtrace(" "int size;" .BI " void *" buffer [ size "], int " size ); .P -.BI "char **backtrace_symbols(int " size ; +.BR "char **backtrace_symbols(" "int size;" .BI " void *const " buffer [ size "], int " size ); -.BI "void backtrace_symbols_fd(int " size ; +.BR "void backtrace_symbols_fd(" "int size;" .BI " void *const " buffer [ size "], int " size ", int " fd ); .fi .SH DESCRIPTION diff --git a/man/man3/bcmp.3 b/man/man3/bcmp.3 index 925f9f1983..153c2f141f 100644 --- a/man/man3/bcmp.3 +++ b/man/man3/bcmp.3 @@ -12,7 +12,7 @@ Standard C library .nf .B #include <strings.h> .P -.BI "[[deprecated]] int bcmp(size_t " n ; +.BR "[[deprecated]] int bcmp(" "size_t n;" .BI " const void " s1 [ n "], const void " s2 [ n "], \ size_t " n ); .fi diff --git a/man/man3/bcopy.3 b/man/man3/bcopy.3 index 3ef19d853d..9f234c7611 100644 --- a/man/man3/bcopy.3 +++ b/man/man3/bcopy.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <strings.h> .P -.BI "[[deprecated]] void bcopy(size_t " n ; +.BR "[[deprecated]] void bcopy(" "size_t n;" .BI " const void " src [ n "], void " dest [ n "], \ size_t " n ); .fi diff --git a/man/man3/bsearch.3 b/man/man3/bsearch.3 index 90896c514b..03b00d9aad 100644 --- a/man/man3/bsearch.3 +++ b/man/man3/bsearch.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "void *bsearch(size_t " n ", size_t " size ; +.BR "void *bsearch(" "size_t n, size_t size;" .BI " const void " key [ size "], const void " base [ size " * " n ], .BI " size_t " n ", size_t " size , .BI " typeof(int (const void [" size "], const void [" size ])) diff --git a/man/man3/bstring.3 b/man/man3/bstring.3 index 2ac954c587..d4022dbe82 100644 --- a/man/man3/bstring.3 +++ b/man/man3/bstring.3 @@ -13,38 +13,38 @@ Standard C library .nf .B #include <string.h> .P -.BI "int bcmp(size_t " n ; +.BR "int bcmp(" "size_t n;" .BI " const void " s1 [ n "], const void " s2 [ n "], size_t " n ); .P -.BI "void bcopy(size_t " n ; +.BR "void bcopy(" "size_t n;" .BI " const void " src [ n "], void " dest [ n "], size_t " n ); .P -.BI "void bzero(size_t " n ; +.BR "void bzero(" "size_t n;" .BI " void " s [ n "], size_t " n ); .P -.BI "void *memccpy(size_t " n ; +.BR "void *memccpy(" "size_t n;" .BI " void " dest [ n "], const void " src [ n "], int " c ", size_t " n ); .P -.BI "void *memchr(size_t " n ; +.BR "void *memchr(" "size_t n;" .BI " const void " s [ n "], int " c ", size_t " n ); .P -.BI "int memcmp(size_t " n ; +.BR "int memcmp(" "size_t n;" .BI " const void " s1 [ n "], const void " s2 [ n "], size_t " n ); .P -.BI "void *memcpy(size_t " n ; +.BR "void *memcpy(" "size_t n;" .BI " void " dest [ n "], const void " src [ n "], size_t " n ); .P -.BI "void *memfrob(size_t " n ; +.BR "void *memfrob(" "size_t n;" .BI " void " s [ n "], size_t " n ); .P -.BI "void *memmem(size_t " hsize ", size_t " nsize ; +.BR "void *memmem(" "size_t hsize, size_t nsize;" .BI " const void " haystack [ hsize "], size_t " hsize , .BI " const void " needle [ nsize "], size_t " nsize ); .P -.BI "void *memmove(size_t " n ; +.BR "void *memmove(" "size_t n;" .BI " void " dest [ n "], const void " src [ n "], size_t " n ); .P -.BI "void *memset(size_t " n ; +.BR "void *memset(" "size_t n;" .BI " void " s [ n "], int " c ", size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/bzero.3 b/man/man3/bzero.3 index 437bb5ae9c..b2c50a883b 100644 --- a/man/man3/bzero.3 +++ b/man/man3/bzero.3 @@ -13,12 +13,12 @@ Standard C library .nf .B #include <strings.h> .P -.BI "void bzero(size_t " n ; +.BR "void bzero(" "size_t n;" .BI " void " s [ n "], size_t " n ); .P .B #include <string.h> .P -.BI "void explicit_bzero(size_t " n ; +.BR "void explicit_bzero(" "size_t n;" .BI " void " s [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/cfree.3 b/man/man3/cfree.3 index 65854f6e32..b117539be9 100644 --- a/man/man3/cfree.3 +++ b/man/man3/cfree.3 @@ -21,12 +21,12 @@ Standard C library .BI "void cfree(void *" ptr ); .P /* In SCO OpenServer */ -.BI "void cfree(unsigned int " n ", unsigned int " size ; +.BR "void cfree(" "unsigned int n, unsigned int size;" .BI " char " ptr [ size " * " n "], unsigned int " n ", \ unsigned int " size ); .P /* In Solaris watchmalloc.so.1 */ -.BI "void cfree(size_t " n ", size_t " size ; +.BR "void cfree(" "size_t n, size_t size;" .BI " void " ptr [ size " * " n "], size_t " n ", size_t " size ); .fi .P diff --git a/man/man3/confstr.3 b/man/man3/confstr.3 index 030d874055..c19f4163e4 100644 --- a/man/man3/confstr.3 +++ b/man/man3/confstr.3 @@ -19,7 +19,7 @@ Standard C library .nf .B #include <unistd.h> .P -.BI "size_t confstr(size_t " size ; +.BR "size_t confstr(" "size_t size;" .BI " int " "name" ", char " buf [ size "], size_t " size ); .fi .P diff --git a/man/man3/des_crypt.3 b/man/man3/des_crypt.3 index 176222d54f..ed46030660 100644 --- a/man/man3/des_crypt.3 +++ b/man/man3/des_crypt.3 @@ -16,10 +16,10 @@ Standard C library .\" .B #include <des_crypt.h> .B #include <rpc/des_crypt.h> .P -.BI "[[deprecated]] int ecb_crypt(unsigned int " datalen ; +.BR "[[deprecated]] int ecb_crypt(" "unsigned int datalen;" .BI " char *" key ", char " data [ datalen ], .BI " unsigned int " datalen ", unsigned int " mode ); -.BI "[[deprecated]] int cbc_crypt(unsigned int " datalen ; +.BR "[[deprecated]] int cbc_crypt(" "unsigned int datalen;" .BI " char *" key ", char " data [ datalen ], .BI " unsigned int " datalen ", unsigned int " mode , .BI " char *" ivec ); diff --git a/man/man3/fgetc.3 b/man/man3/fgetc.3 index d083b52aea..b2c5b37ebf 100644 --- a/man/man3/fgetc.3 +++ b/man/man3/fgetc.3 @@ -17,7 +17,7 @@ Standard C library .BI "int getc(FILE *" stream ); .B "int getchar(void);" .P -.BI "char *fgets(int " size ; +.BR "char *fgets(" "int size;" .BI " char " s "[restrict " size "], int " size ", \ FILE *restrict " stream ); .P diff --git a/man/man3/fgetws.3 b/man/man3/fgetws.3 index b46a512ffc..41b8ab36e3 100644 --- a/man/man3/fgetws.3 +++ b/man/man3/fgetws.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *fgetws(int " n ; +.BR "wchar_t *fgetws(" "int n;" .BI " wchar_t " ws "[restrict " n "], int " n \ ", FILE *restrict " stream ); .fi diff --git a/man/man3/fmemopen.3 b/man/man3/fmemopen.3 index c3dcfb9163..d0d27ffea0 100644 --- a/man/man3/fmemopen.3 +++ b/man/man3/fmemopen.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <stdio.h> .P -.BI "FILE *fmemopen(size_t " size ; +.BR "FILE *fmemopen(" "size_t size;" .BI " void " buf [ size "], size_t " size ", const char *" mode ); .fi .P diff --git a/man/man3/fread.3 b/man/man3/fread.3 index 55b74b93a6..1b6c77a665 100644 --- a/man/man3/fread.3 +++ b/man/man3/fread.3 @@ -14,11 +14,11 @@ Standard C library .nf .B #include <stdio.h> .P -.BI "size_t fread(size_t " size ", size_t " n ; +.BR "size_t fread(" "size_t size, size_t n;" .BI " void " ptr "[restrict " size " * " n ], .BI " size_t " size ", size_t " n , .BI " FILE *restrict " stream ); -.BI "size_t fwrite(size_t " size ", size_t " n ; +.BR "size_t fwrite(" "size_t size, size_t n;" .BI " const void " ptr "[restrict " size " * " n ], .BI " size_t " size ", size_t " n , .BI " FILE *restrict " stream ); diff --git a/man/man3/getcwd.3 b/man/man3/getcwd.3 index 1ca682e0b2..4346db386d 100644 --- a/man/man3/getcwd.3 +++ b/man/man3/getcwd.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <unistd.h> .P -.BI "char *getcwd(size_t " size ; +.BR "char *getcwd(" "size_t size;" .BI " char " buf [ size "], size_t " size ); .B "char *get_current_dir_name(void);" .P diff --git a/man/man3/getdirentries.3 b/man/man3/getdirentries.3 index 43b66e3578..255297feb8 100644 --- a/man/man3/getdirentries.3 +++ b/man/man3/getdirentries.3 @@ -14,7 +14,7 @@ Standard C library .nf .B #include <dirent.h> .P -.BI "ssize_t getdirentries(size_t " nbytes ; +.BR "ssize_t getdirentries(" "size_t nbytes;" .BI " int " fd ", char " buf "[restrict " nbytes "], \ size_t " nbytes , .BI " off_t *restrict " basep ); diff --git a/man/man3/getentropy.3 b/man/man3/getentropy.3 index 2179ead42a..2c8605b82b 100644 --- a/man/man3/getentropy.3 +++ b/man/man3/getentropy.3 @@ -12,7 +12,7 @@ Standard C library .nf .B #include <unistd.h> .P -.BI "int getentropy(size_t " length ; +.BR "int getentropy(" "size_t length;" .BI " void " buffer [ length "], size_t " length ); .fi .P diff --git a/man/man3/getgrent_r.3 b/man/man3/getgrent_r.3 index f6e6ec9328..3bb3ccec8a 100644 --- a/man/man3/getgrent_r.3 +++ b/man/man3/getgrent_r.3 @@ -13,11 +13,11 @@ Standard C library .nf .B #include <grp.h> .P -.BI "int getgrent_r(size_t " size ; +.BR "int getgrent_r(" "size_t size;" .BI " struct group *restrict " gbuf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct group **restrict " gbufp ); -.BI "int fgetgrent_r(size_t " size ; +.BR "int fgetgrent_r(" "size_t size;" .BI " FILE *restrict " stream ", struct group *restrict " gbuf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct group **restrict " gbufp ); diff --git a/man/man3/getgrnam.3 b/man/man3/getgrnam.3 index aad2ebf4d6..e495eaed94 100644 --- a/man/man3/getgrnam.3 +++ b/man/man3/getgrnam.3 @@ -17,12 +17,12 @@ Standard C library .BI "struct group *getgrnam(const char *" name ); .BI "struct group *getgrgid(gid_t " gid ); .P -.BI "int getgrnam_r(size_t " size ; +.BR "int getgrnam_r(" "size_t size;" .BI " const char *restrict " name \ ", struct group *restrict " grp , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct group **restrict " result ); -.BI "int getgrgid_r(size_t " size ; +.BR "int getgrgid_r(" "size_t size;" .BI " gid_t " gid ", struct group *restrict " grp , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct group **restrict " result ); diff --git a/man/man3/gethostbyname.3 b/man/man3/gethostbyname.3 index 4351b214ea..b09bd923b5 100644 --- a/man/man3/gethostbyname.3 +++ b/man/man3/gethostbyname.3 @@ -24,7 +24,7 @@ Standard C library .B [[deprecated]] extern int h_errno; .P .BI "[[deprecated]] struct hostent *gethostbyname(const char *" name ); -.BI "[[deprecated]] struct hostent *gethostbyaddr(socklen_t " size ; +.BR "[[deprecated]] struct hostent *gethostbyaddr(" "socklen_t size;" .BI " const void " addr [ size ], .BI " socklen_t " size ", int " type ); .P @@ -38,14 +38,14 @@ Standard C library .B [[deprecated]] .BI "struct hostent *gethostbyname2(const char *" name ", int " af ); .P -.BI "int gethostent_r(size_t " bufsize ; +.BR "int gethostent_r(" "size_t bufsize;" .BI " struct hostent *restrict " ret , .BI " char " buf "[restrict " bufsize "], size_t " bufsize , .BI " struct hostent **restrict " result , .BI " int *restrict " h_errnop ); .P .B [[deprecated]] -.BI "int gethostbyaddr_r(socklen_t " size ", size_t " bufsize ; +.BR "int gethostbyaddr_r(" "socklen_t size, size_t bufsize;" .BI " const void " addr "[restrict " size "], socklen_t " size , .BI " int " type , .BI " struct hostent *restrict " ret , @@ -53,14 +53,14 @@ Standard C library .BI " struct hostent **restrict " result , .BI " int *restrict " h_errnop ); .B [[deprecated]] -.BI "int gethostbyname_r(size_t " bufsize ; +.BR "int gethostbyname_r(" "size_t bufsize;" .BI " const char *restrict " name , .BI " struct hostent *restrict " ret , .BI " char " buf "[restrict " bufsize "], size_t " bufsize , .BI " struct hostent **restrict " result , .BI " int *restrict " h_errnop ); .B [[deprecated]] -.BI "int gethostbyname2_r(size_t " bufsize ; +.BR "int gethostbyname2_r(" "size_t bufsize;" .BI " const char *restrict " name ", int " af, .BI " struct hostent *restrict " ret , .BI " char " buf "[restrict " bufsize "], size_t " bufsize , diff --git a/man/man3/getipnodebyname.3 b/man/man3/getipnodebyname.3 index 0489e44c5b..28d1c3ccd4 100644 --- a/man/man3/getipnodebyname.3 +++ b/man/man3/getipnodebyname.3 @@ -19,7 +19,7 @@ Standard C library .P .BI "[[deprecated]] struct hostent *getipnodebyname(const char *" name ", int " af , .BI " int " flags ", int *" error_num ); -.BI "[[deprecated]] struct hostent *getipnodebyaddr(size_t " size ; +.BR "[[deprecated]] struct hostent *getipnodebyaddr(" "size_t size;" .BI " const void " addr [ size ], .BI " size_t " size ", int " af , .BI " int *" "error_num" ); diff --git a/man/man3/getlogin.3 b/man/man3/getlogin.3 index 366630f875..ea17967cd5 100644 --- a/man/man3/getlogin.3 +++ b/man/man3/getlogin.3 @@ -14,7 +14,7 @@ Standard C library .B #include <unistd.h> .P .B "char *getlogin(void);" -.BI "int getlogin_r(size_t " bufsize ; +.BR "int getlogin_r(" "size_t bufsize;" .BI " char " buf [ bufsize "], size_t " bufsize ); .P .B #include <stdio.h> diff --git a/man/man3/getmntent.3 b/man/man3/getmntent.3 index d720f5f75b..1145fc3499 100644 --- a/man/man3/getmntent.3 +++ b/man/man3/getmntent.3 @@ -29,7 +29,7 @@ Standard C library /* GNU extension */ .B #include <mntent.h> .P -.BI "struct mntent *getmntent_r(int " size ; +.BR "struct mntent *getmntent_r(" "int size;" .BI " FILE *restrict " streamp , .BI " struct mntent *restrict " mntbuf , .BI " char " buf "[restrict " size "], int " size ); diff --git a/man/man3/getnameinfo.3 b/man/man3/getnameinfo.3 index f3d6244efd..7fa13bcb62 100644 --- a/man/man3/getnameinfo.3 +++ b/man/man3/getnameinfo.3 @@ -14,7 +14,7 @@ Standard C library .B #include <sys/socket.h> .B #include <netdb.h> .P -.BI "int getnameinfo(socklen_t " hostlen ", socklen_t " servlen ; +.BR "int getnameinfo(" "socklen_t hostlen, socklen_t servlen;" .BI " const struct sockaddr *restrict " addr \ ", socklen_t " addrlen , .BI " char " host "[_Nullable restrict " hostlen ], diff --git a/man/man3/getnetent_r.3 b/man/man3/getnetent_r.3 index e400828150..0960d9cc91 100644 --- a/man/man3/getnetent_r.3 +++ b/man/man3/getnetent_r.3 @@ -14,18 +14,18 @@ Standard C library .nf .B #include <netdb.h> .P -.BI "int getnetent_r(size_t " size ; +.BR "int getnetent_r(" "size_t size;" .BI " struct netent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct netent **restrict " result , .BI " int *restrict " h_errnop ); -.BI "int getnetbyname_r(size_t " size ; +.BR "int getnetbyname_r(" "size_t size;" .BI " const char *restrict " name , .BI " struct netent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct netent **restrict " result , .BI " int *restrict " h_errnop ); -.BI "int getnetbyaddr_r(size_t " size ; +.BR "int getnetbyaddr_r(" "size_t size;" .BI " uint32_t " net ", int " type , .BI " struct netent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , diff --git a/man/man3/getprotoent_r.3 b/man/man3/getprotoent_r.3 index 23ba783f38..a467fb9e15 100644 --- a/man/man3/getprotoent_r.3 +++ b/man/man3/getprotoent_r.3 @@ -14,16 +14,16 @@ Standard C library .nf .B #include <netdb.h> .P -.BI "int getprotoent_r(size_t " size ; +.BR "int getprotoent_r(" "size_t size;" .BI " struct protoent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct protoent **restrict " result ); -.BI "int getprotobyname_r(size_t " size ; +.BR "int getprotobyname_r(" "size_t size;" .BI " const char *restrict " name , .BI " struct protoent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct protoent **restrict " result ); -.BI "int getprotobynumber_r(size_t " size ; +.BR "int getprotobynumber_r(" "size_t size;" .BI " int " proto , .BI " struct protoent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , diff --git a/man/man3/getpwent_r.3 b/man/man3/getpwent_r.3 index e58a675080..8c4c41b825 100644 --- a/man/man3/getpwent_r.3 +++ b/man/man3/getpwent_r.3 @@ -13,11 +13,11 @@ Standard C library .nf .B #include <pwd.h> .P -.BI "int getpwent_r(size_t " size ; +.BR "int getpwent_r(" "size_t size;" .BI " struct passwd *restrict " pwbuf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct passwd **restrict " pwbufp ); -.BI "int fgetpwent_r(size_t " size ; +.BR "int fgetpwent_r(" "size_t size;" .BI " FILE *restrict " stream ", struct passwd *restrict " pwbuf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct passwd **restrict " pwbufp ); diff --git a/man/man3/getpwnam.3 b/man/man3/getpwnam.3 index 5c35711f8d..f02b028af0 100644 --- a/man/man3/getpwnam.3 +++ b/man/man3/getpwnam.3 @@ -17,12 +17,12 @@ Standard C library .BI "struct passwd *getpwnam(const char *" name ); .BI "struct passwd *getpwuid(uid_t " uid ); .P -.BI "int getpwnam_r(size_t " size ; +.BR "int getpwnam_r(" "size_t size;" .BI " const char *restrict " name ", \ struct passwd *restrict " pwd , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct passwd **restrict " result ); -.BI "int getpwuid_r(size_t " size ; +.BR "int getpwuid_r(" "size_t size;" .BI " uid_t " uid ", struct passwd *restrict " pwd , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct passwd **restrict " result ); diff --git a/man/man3/getrpcent_r.3 b/man/man3/getrpcent_r.3 index b993e2b5a4..2678c3907a 100644 --- a/man/man3/getrpcent_r.3 +++ b/man/man3/getrpcent_r.3 @@ -14,14 +14,14 @@ Standard C library .nf .B #include <netdb.h> .P -.BI "int getrpcent_r(size_t " size ; +.BR "int getrpcent_r(" "size_t size;" .BI " struct rpcent *" result_buf ", char " buf [ size ], .BI " size_t " size ", struct rpcent **" result ); -.BI "int getrpcbyname_r(size_t " size ; +.BR "int getrpcbyname_r(" "size_t size;" .BI " const char *" name , .BI " struct rpcent *" result_buf ", char " buf [ size ], .BI " size_t " size ", struct rpcent **" result ); -.BI "int getrpcbynumber_r(size_t " size ; +.BR "int getrpcbynumber_r(" "size_t size;" .BI " int " number , .BI " struct rpcent *" result_buf ", char " buf [ size ], .BI " size_t " size ", struct rpcent **" result ); diff --git a/man/man3/getservent_r.3 b/man/man3/getservent_r.3 index e3879f2ed3..64b397df1e 100644 --- a/man/man3/getservent_r.3 +++ b/man/man3/getservent_r.3 @@ -14,17 +14,17 @@ Standard C library .nf .B #include <netdb.h> .P -.BI "int getservent_r(size_t " size ; +.BR "int getservent_r(" "size_t size;" .BI " struct servent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct servent **restrict " result ); -.BI "int getservbyname_r(size_t " size ; +.BR "int getservbyname_r(" "size_t size;" .BI " const char *restrict " name , .BI " const char *restrict " proto , .BI " struct servent *restrict " result_buf , .BI " char " buf "[restrict " size "], size_t " size , .BI " struct servent **restrict " result ); -.BI "int getservbyport_r(size_t " size ; +.BR "int getservbyport_r(" "size_t size;" .BI " int " port , .BI " const char *restrict " proto , .BI " struct servent *restrict " result_buf , diff --git a/man/man3/getspnam.3 b/man/man3/getspnam.3 index 16b57fa361..f49d877273 100644 --- a/man/man3/getspnam.3 +++ b/man/man3/getspnam.3 @@ -33,20 +33,20 @@ Standard C library /* GNU extension */ .B #include <shadow.h> .P -.BI "int getspent_r(size_t " size ; +.BR "int getspent_r(" "size_t size;" .BI " struct spwd *" spbuf , .BI " char " buf [ size "], size_t " size ", \ struct spwd **" spbufp ); -.BI "int getspnam_r(size_t " size ; +.BR "int getspnam_r(" "size_t size;" .BI " const char *" name ", struct spwd *" spbuf , .BI " char " buf [ size "], size_t " size ", \ struct spwd **" spbufp ); .P -.BI "int fgetspent_r(size_t " size ; +.BR "int fgetspent_r(" "size_t size;" .BI " FILE *" stream ", struct spwd *" spbuf , .BI " char " buf [ size "], size_t " size ", \ struct spwd **" spbufp ); -.BI "int sgetspent_r(size_t " size ; +.BR "int sgetspent_r(" "size_t size;" .BI " const char *" s ", struct spwd *" spbuf , .BI " char " buf [ size "], size_t " size ", \ struct spwd **" spbufp ); diff --git a/man/man3/inet_net_pton.3 b/man/man3/inet_net_pton.3 index 751bfbf763..78c43f153a 100644 --- a/man/man3/inet_net_pton.3 +++ b/man/man3/inet_net_pton.3 @@ -12,10 +12,10 @@ Resolver library .nf .B #include <arpa/inet.h> .P -.BI "int inet_net_pton(size_t " nsize ; +.BR "int inet_net_pton(" "size_t nsize;" .BI " int " af ", const char *" pres , .BI " void " netp [ nsize "], size_t " nsize ); -.BI "char *inet_net_ntop(int " bits ", size_t " psize ; +.BR "char *inet_net_ntop(" "int bits, size_t psize;" .BI " int " af , .BI " const void " netp [( bits " \- CHAR_BIT + 1) / CHAR_BIT]," .BI " int " bits , diff --git a/man/man3/inet_ntop.3 b/man/man3/inet_ntop.3 index 3c69fbeda7..bf3259f8aa 100644 --- a/man/man3/inet_ntop.3 +++ b/man/man3/inet_ntop.3 @@ -15,7 +15,7 @@ Standard C library .nf .B #include <arpa/inet.h> .P -.BI "const char *inet_ntop(socklen_t " size ; +.BR "const char *inet_ntop(" "socklen_t size;" .BI " int " af ", const void *restrict " src , .BI " char " dst "[restrict " size "], socklen_t " size ); .fi diff --git a/man/man3/lio_listio.3 b/man/man3/lio_listio.3 index 7397355cfb..0c61aeba09 100644 --- a/man/man3/lio_listio.3 +++ b/man/man3/lio_listio.3 @@ -13,7 +13,7 @@ Real-time library .nf .B "#include <aio.h>" .P -.BI "int lio_listio(int " n ; +.BR "int lio_listio(" "int n;" .BI " int " mode , .BI " struct aiocb *restrict const " aiocb_list "[restrict " n ], .BI " int " n ", struct sigevent *restrict " sevp ); diff --git a/man/man3/lsearch.3 b/man/man3/lsearch.3 index 6514c1cc6c..8576ab86be 100644 --- a/man/man3/lsearch.3 +++ b/man/man3/lsearch.3 @@ -13,13 +13,13 @@ Standard C library .nf .B #include <search.h> .P -.BI "void *lfind(size_t *" n ", size_t " size ; +.BR "void *lfind(" "size_t *n, size_t size;" .BI " const void " key [ size "], \ const void " base [* n " * " size ], .BI " size_t *" n ", size_t " size , .BI " typeof(int (const void [" size "], const void [" size ])) .BI " *" compar ); -.BI "void *lsearch(size_t *" n ", size_t " size ; +.BR "void *lsearch(" "size_t *n, size_t size;" .BI " const void " key [ size "], \ void " base [* n " * " size ], .BI " size_t *" n ", size_t " size , diff --git a/man/man3/mblen.3 b/man/man3/mblen.3 index 6cd43baf14..d55f828132 100644 --- a/man/man3/mblen.3 +++ b/man/man3/mblen.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "int mblen(size_t " n ; +.BR "int mblen(" "size_t n;" .BI " const char " s [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/mbrlen.3 b/man/man3/mbrlen.3 index be44b3c7d4..6596f03ec6 100644 --- a/man/man3/mbrlen.3 +++ b/man/man3/mbrlen.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t mbrlen(size_t " n ; +.BR "size_t mbrlen(" "size_t n;" .BI " const char " s "[restrict " n "], size_t " n , .BI " mbstate_t *restrict " ps ); .fi diff --git a/man/man3/mbrtowc.3 b/man/man3/mbrtowc.3 index 81751d32e1..caa3944c1a 100644 --- a/man/man3/mbrtowc.3 +++ b/man/man3/mbrtowc.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t mbrtowc(size_t " n ; +.BR "size_t mbrtowc(" "size_t n;" .BI " wchar_t *restrict " pwc ", const char " s "[restrict " n ], .BI " size_t " n ", mbstate_t *restrict " ps ); .fi diff --git a/man/man3/mbsnrtowcs.3 b/man/man3/mbsnrtowcs.3 index 2e855c5a2d..2d9a66693c 100644 --- a/man/man3/mbsnrtowcs.3 +++ b/man/man3/mbsnrtowcs.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t mbsnrtowcs(size_t " size ; +.BR "size_t mbsnrtowcs(" "size_t size;" .BI " wchar_t " dest "[restrict " size "], const char **restrict " src , .BI " size_t " nms ", size_t " size \ ", mbstate_t *restrict " ps ); diff --git a/man/man3/mbsrtowcs.3 b/man/man3/mbsrtowcs.3 index c71572d594..a2852a550d 100644 --- a/man/man3/mbsrtowcs.3 +++ b/man/man3/mbsrtowcs.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t mbsrtowcs(size_t " dsize ; +.BR "size_t mbsrtowcs(" "size_t dsize;" .BI " wchar_t " dest "[restrict " dsize ], .BI " const char **restrict " src , .BI " size_t " dsize ", mbstate_t *restrict " ps ); diff --git a/man/man3/mbstowcs.3 b/man/man3/mbstowcs.3 index 5928d4def6..655af0d978 100644 --- a/man/man3/mbstowcs.3 +++ b/man/man3/mbstowcs.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "size_t mbstowcs(size_t " dsize ; +.BR "size_t mbstowcs(" "size_t dsize;" .BI " wchar_t " dest "[restrict " dsize "], \ const char *restrict " src , .BI " size_t " dsize ); diff --git a/man/man3/mbtowc.3 b/man/man3/mbtowc.3 index 977a74fc56..22f0cbc2e9 100644 --- a/man/man3/mbtowc.3 +++ b/man/man3/mbtowc.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "int mbtowc(size_t " n ; +.BR "int mbtowc(" "size_t n;" .BI " wchar_t *restrict " pwc ", const char " s "[restrict " n "], \ size_t " n ); .fi diff --git a/man/man3/memccpy.3 b/man/man3/memccpy.3 index b885f90940..ba06f96aa7 100644 --- a/man/man3/memccpy.3 +++ b/man/man3/memccpy.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "void *memccpy(size_t " n ; +.BR "void *memccpy(" "size_t n;" .BI " void " dest "[restrict " n "], const void " src "[restrict " n ], .BI " int " c ", size_t " n ); .fi diff --git a/man/man3/memchr.3 b/man/man3/memchr.3 index 252a627104..566176c156 100644 --- a/man/man3/memchr.3 +++ b/man/man3/memchr.3 @@ -13,9 +13,9 @@ Standard C library .nf .B #include <string.h> .P -.BI "void *memchr(size_t " n ; +.BR "void *memchr(" "size_t n;" .BI " const void " s [ n "], int " c ", size_t " n ); -.BI "void *memrchr(size_t " n ; +.BR "void *memrchr(" "size_t n;" .BI " const void " s [ n "], int " c ", size_t " n ); .P .BI "[[deprecated]] void *rawmemchr(const void *" s ", int " c ); diff --git a/man/man3/memcmp.3 b/man/man3/memcmp.3 index b280be536c..95e23f1f47 100644 --- a/man/man3/memcmp.3 +++ b/man/man3/memcmp.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "int memcmp(size_t " n ; +.BR "int memcmp(" "size_t n;" .BI " const void " s1 [ n "], const void " s2 [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/memcpy.3 b/man/man3/memcpy.3 index 7c580a909e..03ddaa8314 100644 --- a/man/man3/memcpy.3 +++ b/man/man3/memcpy.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "void *memcpy(size_t " n ; +.BR "void *memcpy(" "size_t n;" .BI " void " dest "[restrict " n "], const void " src "[restrict " n ], .BI " size_t " n ); .fi diff --git a/man/man3/memfrob.3 b/man/man3/memfrob.3 index 11deebb5aa..1959cf6b2e 100644 --- a/man/man3/memfrob.3 +++ b/man/man3/memfrob.3 @@ -14,7 +14,7 @@ Standard C library .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <string.h> .P -.BI "void *memfrob(size_t " n ; +.BR "void *memfrob(" "size_t n;" .BI " void " s [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/memmem.3 b/man/man3/memmem.3 index 5dd53cb969..51aca7d29a 100644 --- a/man/man3/memmem.3 +++ b/man/man3/memmem.3 @@ -14,7 +14,7 @@ Standard C library .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <string.h> .P -.BI "void *memmem(size_t " hsize ", size_t " nsize ; +.BR "void *memmem(" "size_t hsize, size_t nsize;" .BI " const void " haystack [ hsize "], size_t " hsize , .BI " const void " needle [ nsize "], size_t " nsize ); .fi diff --git a/man/man3/memmove.3 b/man/man3/memmove.3 index 534c59f3b1..cf68705380 100644 --- a/man/man3/memmove.3 +++ b/man/man3/memmove.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "void *memmove(size_t " n ; +.BR "void *memmove(" "size_t n;" .BI " void " dest [ n "], const void " src [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/mempcpy.3 b/man/man3/mempcpy.3 index 843e2b2a02..3dce9caea3 100644 --- a/man/man3/mempcpy.3 +++ b/man/man3/mempcpy.3 @@ -15,14 +15,14 @@ Standard C library .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <string.h> .P -.BI "void *mempcpy(size_t " n ; +.BR "void *mempcpy(" "size_t n;" .BI " void " dest "[restrict " n "], const void " src "[restrict " n ], .BI " size_t " n ); .P .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <wchar.h> .P -.BI "wchar_t *wmempcpy(size_t " n ; +.BR "wchar_t *wmempcpy(" "size_t n;" .BI " wchar_t " dest "[restrict " n "], const wchar_t " src "[restrict " n ], .BI " size_t " n ); .fi diff --git a/man/man3/memset.3 b/man/man3/memset.3 index 7d0089a483..f6858055af 100644 --- a/man/man3/memset.3 +++ b/man/man3/memset.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "void *memset(size_t " n ; +.BR "void *memset(" "size_t n;" .BI " void " s [ n "], int " c ", size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/mq_receive.3 b/man/man3/mq_receive.3 index 462a43a67a..173a0f60e2 100644 --- a/man/man3/mq_receive.3 +++ b/man/man3/mq_receive.3 @@ -13,14 +13,14 @@ Real-time library .nf .B #include <mqueue.h> .P -.BI "ssize_t mq_receive(size_t " msg_len ; +.BR "ssize_t mq_receive(" "size_t msg_len;" .BI " mqd_t " mqdes ", char " msg_ptr [ msg_len ], .BI " size_t " msg_len ", unsigned int *" msg_prio ); .P .B #include <time.h> .B #include <mqueue.h> .P -.BI "ssize_t mq_timedreceive(size_t " msg_len ; +.BR "ssize_t mq_timedreceive(" "size_t msg_len;" .BI " mqd_t " mqdes ", char *restrict " msg_ptr [ msg_len ], .BI " size_t " msg_len ", unsigned int *restrict " msg_prio , .BI " const struct timespec *restrict " abs_timeout ); diff --git a/man/man3/mq_send.3 b/man/man3/mq_send.3 index e936772157..a52d966af2 100644 --- a/man/man3/mq_send.3 +++ b/man/man3/mq_send.3 @@ -13,14 +13,14 @@ Real-time library .nf .B #include <mqueue.h> .P -.BI "int mq_send(size_t " msg_len ; +.BR "int mq_send(" "size_t msg_len;" .BI " mqd_t " mqdes ", const char " msg_ptr [ msg_len ], .BI " size_t " msg_len ", unsigned int " msg_prio ); .P .B #include <time.h> .B #include <mqueue.h> .P -.BI "int mq_timedsend(size_t " msg_len ; +.BR "int mq_timedsend(" "size_t msg_len;" .BI " mqd_t " mqdes ", const char " msg_ptr [ msg_len ], .BI " size_t " msg_len ", unsigned int " msg_prio , .BI " const struct timespec *" abs_timeout ); diff --git a/man/man3/posix_madvise.3 b/man/man3/posix_madvise.3 index ccb16f5ba8..059d00a2b1 100644 --- a/man/man3/posix_madvise.3 +++ b/man/man3/posix_madvise.3 @@ -12,7 +12,7 @@ Standard C library .nf .B #include <sys/mman.h> .P -.BI "int posix_madvise(size_t " size ; +.BR "int posix_madvise(" "size_t size;" .BI " void " addr [ size "], size_t " size ", int " advice ); .fi .P diff --git a/man/man3/printf.3 b/man/man3/printf.3 index 759539381e..22fe065761 100644 --- a/man/man3/printf.3 +++ b/man/man3/printf.3 @@ -21,7 +21,7 @@ Standard C library .BI " const char *restrict " format ", ...);" .BI "int sprintf(char *restrict " str , .BI " const char *restrict " format ", ...);" -.BI "int snprintf(size_t " size ; +.BR "int snprintf(" "size_t size;" .BI " char " str "[restrict " size "], size_t " size , .BI " const char *restrict " format ", ...);" .P @@ -32,7 +32,7 @@ Standard C library .BI " const char *restrict " format ", va_list " ap ); .BI "int vsprintf(char *restrict " str , .BI " const char *restrict " format ", va_list " ap ); -.BI "int vsnprintf(size_t " size ; +.BR "int vsnprintf(" "size_t size;" .BI " char " str "[restrict " size "], size_t " size , .BI " const char *restrict " format ", va_list " ap ); .fi diff --git a/man/man3/pthread_attr_setstack.3 b/man/man3/pthread_attr_setstack.3 index 5686ce1dc8..e04640d1ea 100644 --- a/man/man3/pthread_attr_setstack.3 +++ b/man/man3/pthread_attr_setstack.3 @@ -14,7 +14,7 @@ POSIX threads library .nf .B #include <pthread.h> .P -.BI "int pthread_attr_setstack(size_t " stacksize ; +.BR "int pthread_attr_setstack(" "size_t stacksize;" .BI " pthread_attr_t *" attr , .BI " void " stackaddr [ stacksize ], .BI " size_t " stacksize ); diff --git a/man/man3/pthread_setname_np.3 b/man/man3/pthread_setname_np.3 index 66ed1c4b5f..02ec1b3777 100644 --- a/man/man3/pthread_setname_np.3 +++ b/man/man3/pthread_setname_np.3 @@ -15,7 +15,7 @@ POSIX threads library .B #include <pthread.h> .P .BI "int pthread_setname_np(pthread_t " thread ", const char *" name ); -.BI "int pthread_getname_np(size_t " size ; +.BR "int pthread_getname_np(" "size_t size;" .BI " pthread_t " thread ", char " name [ size "], \ size_t " size ); .fi diff --git a/man/man3/ptsname.3 b/man/man3/ptsname.3 index 748f1e19a6..db9e995afa 100644 --- a/man/man3/ptsname.3 +++ b/man/man3/ptsname.3 @@ -14,7 +14,7 @@ Standard C library .B #include <stdlib.h> .P .BI "char *ptsname(int " fd ); -.BI "int ptsname_r(size_t " size ; +.BR "int ptsname_r(" "size_t size;" .BI " int " fd ", char " buf [ size "], size_t " size ); .fi .P diff --git a/man/man3/qsort.3 b/man/man3/qsort.3 index f7ba16e2e4..da20b2a40a 100644 --- a/man/man3/qsort.3 +++ b/man/man3/qsort.3 @@ -13,11 +13,11 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "void qsort(size_t " n ", size_t " size ; +.BR "void qsort(" "size_t n, size_t size;" .BI " void " base [ n " * " size "], size_t " n ", size_t " size , .BI " typeof(int (const void [" size "], const void [" size "]))" .BI " *" compar ); -.BI "void qsort_r(size_t " n ", size_t " size ; +.BR "void qsort_r(" "size_t n, size_t size;" .BI " void " base [ n " * " size "], size_t " n ", size_t " size , .BI " typeof(int (const void [" size "], const void [" size "], void *))" .BI " *" compar , diff --git a/man/man3/random.3 b/man/man3/random.3 index 8ec1001666..55c3e25c85 100644 --- a/man/man3/random.3 +++ b/man/man3/random.3 @@ -16,7 +16,7 @@ Standard C library .B long random(void); .BI "void srandom(unsigned int " seed ); .P -.BI "char *initstate(size_t " n ; +.BR "char *initstate(" "size_t n;" .BI " unsigned int " seed ", char " state [ n "], size_t " n ); .BI "char *setstate(char *" state ); .fi diff --git a/man/man3/regex.3 b/man/man3/regex.3 index a5c3e9debb..6c37ecafe8 100644 --- a/man/man3/regex.3 +++ b/man/man3/regex.3 @@ -21,7 +21,7 @@ Standard C library regmatch_t " pmatch "[_Nullable restrict " nmatch ], .BI " int " eflags ); .P -.BI "size_t regerror(size_t " errbuf_size ; +.BR "size_t regerror(" "size_t errbuf_size;" .BI " int " errcode ", const regex_t *_Nullable restrict " preg , .BI " char " errbuf "[_Nullable restrict " errbuf_size ], .BI " size_t " errbuf_size ); diff --git a/man/man3/resolver.3 b/man/man3/resolver.3 index 2246f296fb..7a16e8d5ea 100644 --- a/man/man3/resolver.3 +++ b/man/man3/resolver.3 @@ -26,23 +26,23 @@ Resolver library .P .BI "void res_nclose(res_state " statep ); .P -.BI "int res_nquery(int " anslen ; +.BR "int res_nquery(" "int anslen;" .BI " res_state " statep , .BI " const char *" dname ", int " class ", int " type , .BI " unsigned char " answer [ anslen "], int " anslen ); .P -.BI "int res_nsearch(int " anslen ; +.BR "int res_nsearch(" "int anslen;" .BI " res_state " statep , .BI " const char *" dname ", int " class ", int " type , .BI " unsigned char " answer [ anslen "], int " anslen ); .P -.BI "int res_nquerydomain(int " anslen ; +.BR "int res_nquerydomain(" "int anslen;" .BI " res_state " statep , .BI " const char *" name ", const char *" domain , .BI " int " class ", int " type ", unsigned char " answer [ anslen ], .BI " int " anslen ); .P -.BI "int res_nmkquery(int " datalen ", int " buflen ; +.BR "int res_nmkquery(" "int datalen, int buflen;" .BI " res_state " statep , .BI " int " op ", const char *" dname ", int " class , .BI " int " type ", const unsigned char " data [ datalen "], \ @@ -50,17 +50,17 @@ int " datalen , .BI " const unsigned char *" newrr , .BI " unsigned char " buf [ buflen "], int " buflen ); .P -.BI "int res_nsend(int " msglen ", int " anslen ; +.BR "int res_nsend(" "int msglen, int anslen;" .BI " res_state " statep , .BI " const unsigned char " msg [ msglen "], int " msglen , .BI " unsigned char " answer [ anslen "], int " anslen ); .P -.BI "int dn_comp(int " length ; +.BR "int dn_comp(" "int length;" .BI " const char *" exp_dn ", unsigned char " comp_dn [ length ], .BI " int " length ", unsigned char **" dnptrs , .BI " unsigned char **" lastdnptr ); .P -.BI "int dn_expand(int " length ; +.BR "int dn_expand(" "int length;" .BI " const unsigned char *" msg , .BI " const unsigned char *" eomorig , .BI " const unsigned char *" comp_dn ", char " exp_dn [ length ], @@ -71,23 +71,23 @@ int " datalen , .B [[deprecated]] int res_init(void); .P .B [[deprecated]] -.BI "int res_query(int " anslen ; +.BR "int res_query(" "int anslen;" .BI " const char *" dname ", int " class ", int " type , .BI " unsigned char " answer [ anslen "], int " anslen ); .P .B [[deprecated]] -.BI "int res_search(int " anslen ; +.BR "int res_search(" "int anslen;" .BI " const char *" dname ", int " class ", int " type , .BI " unsigned char " answer [ anslen "], int " anslen ); .P .B [[deprecated]] -.BI "int res_querydomain(int " anslen ; +.BR "int res_querydomain(" "int anslen;" .BI " const char *" name ", const char *" domain , .BI " int " class ", int " type ", unsigned char " answer [ anslen ], .BI " int " anslen ); .P .B [[deprecated]] -.BI "int res_mkquery(int " datalen ", int " buflen ; +.BR "int res_mkquery(" "int datalen, int buflen;" .BI " int " op ", const char *" dname ", int " class , .BI " int " type ", const unsigned char " data [ datalen "], \ int " datalen , @@ -95,7 +95,7 @@ int " datalen , .BI " unsigned char " buf [ buflen "], int " buflen ); .P .B [[deprecated]] -.BI "int res_send(int " msglen ", int " anslen ; +.BR "int res_send(" "int msglen, int anslen;" .BI " const unsigned char " msg [ msglen "], int " msglen , .BI " unsigned char " answer [ anslen "], int " anslen ); .fi diff --git a/man/man3/setaliasent.3 b/man/man3/setaliasent.3 index 84c1ebbb96..d073eb5336 100644 --- a/man/man3/setaliasent.3 +++ b/man/man3/setaliasent.3 @@ -18,13 +18,13 @@ Standard C library .B "void endaliasent(void);" .P .B "struct aliasent *getaliasent(void);" -.BI "int getaliasent_r(size_t " size ; +.BR "int getaliasent_r(" "size_t size;" .BI " struct aliasent *restrict " result , .BI " char " buffer "[restrict " size "], size_t " size , .BI " struct aliasent **restrict " res ); .P .BI "struct aliasent *getaliasbyname(const char *" name ); -.BI "int getaliasbyname_r(size_t " size ; +.BR "int getaliasbyname_r(" "size_t size;" .BI " const char *restrict " name , .BI " struct aliasent *restrict " result , .BI " char " buffer "[restrict " size "], size_t " size , diff --git a/man/man3/setbuf.3 b/man/man3/setbuf.3 index 6e6b1f2697..f73a8b52c5 100644 --- a/man/man3/setbuf.3 +++ b/man/man3/setbuf.3 @@ -14,12 +14,12 @@ Standard C library .nf .B #include <stdio.h> .P -.BI "int setvbuf(size_t " size ; +.BR "int setvbuf(" "size_t size;" .BI " FILE *restrict " stream ", char " buf "[restrict " size ], .BI " int " mode ", size_t " size ); .P .BI "void setbuf(FILE *restrict " stream ", char *restrict " buf ); -.BI "void setbuffer(size_t " size ; +.BR "void setbuffer(" "size_t size;" .BI " FILE *restrict " stream ", char " buf "[restrict " size ], .BI " size_t " size ); .BI "void setlinebuf(FILE *" stream ); diff --git a/man/man3/setnetgrent.3 b/man/man3/setnetgrent.3 index aac183cd0c..76cefbad95 100644 --- a/man/man3/setnetgrent.3 +++ b/man/man3/setnetgrent.3 @@ -19,7 +19,7 @@ Standard C library .P .BI "int getnetgrent(char **restrict " host , .BI " char **restrict " user ", char **restrict " domain ); -.BI "int getnetgrent_r(size_t " size ; +.BR "int getnetgrent_r(" "size_t size;" .BI " char **restrict " host , .BI " char **restrict " user ", char **restrict " domain , .BI " char " buf "[restrict " size "], size_t " size ); diff --git a/man/man3/stpncpy.3 b/man/man3/stpncpy.3 index d9c8fd5447..99fc347019 100644 --- a/man/man3/stpncpy.3 +++ b/man/man3/stpncpy.3 @@ -16,11 +16,11 @@ Standard C library .nf .B #include <string.h> .P -.BI "char *strncpy(size_t " dsize ; +.BR "char *strncpy(" "size_t dsize;" .BI " char " dst "[restrict " dsize "], \ const char *restrict " src , .BI " size_t " dsize ); -.BI "char *stpncpy(size_t " dsize ; +.BR "char *stpncpy(" "size_t dsize;" .BI " char " dst "[restrict " dsize "], \ const char *restrict " src , .BI " size_t " dsize ); diff --git a/man/man3/strcasecmp.3 b/man/man3/strcasecmp.3 index 282d4d27b1..8db52225b7 100644 --- a/man/man3/strcasecmp.3 +++ b/man/man3/strcasecmp.3 @@ -14,7 +14,7 @@ Standard C library .B #include <strings.h> .P .BI "int strcasecmp(const char *" s1 ", const char *" s2 ); -.BI "int strncasecmp(size_t " n ; +.BR "int strncasecmp(" "size_t n;" .BI " const char " s1 [ n "], const char " s2 [ n "], \ size_t " n ); .fi diff --git a/man/man3/strcmp.3 b/man/man3/strcmp.3 index c5ce6e159f..e2b83e448d 100644 --- a/man/man3/strcmp.3 +++ b/man/man3/strcmp.3 @@ -14,7 +14,7 @@ Standard C library .B #include <string.h> .P .BI "int strcmp(const char *" s1 ", const char *" s2 ); -.BI "int strncmp(size_t " n ; +.BR "int strncmp(" "size_t n;" .BI " const char " s1 [ n "], const char " s2 [ n "], size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/strdup.3 b/man/man3/strdup.3 index 0f2c737d2e..185722e3df 100644 --- a/man/man3/strdup.3 +++ b/man/man3/strdup.3 @@ -15,10 +15,10 @@ Standard C library .P .BI "char *strdup(const char *" s ); .P -.BI "char *strndup(size_t " n ; +.BR "char *strndup(" "size_t n;" .BI " const char " s [ n "], size_t " n ); .BI "char *strdupa(const char *" s ); -.BI "char *strndupa(size_t " n ; +.BR "char *strndupa(" "size_t n;" .BI " const char " s [ n "], size_t " n ); .fi .P diff --git a/man/man3/strerror.3 b/man/man3/strerror.3 index e1d9d274e1..a378b21fc0 100644 --- a/man/man3/strerror.3 +++ b/man/man3/strerror.3 @@ -18,11 +18,11 @@ Standard C library .BI "const char *strerrorname_np(int " errnum ); .BI "const char *strerrordesc_np(int " errnum ); .P -.BI "int strerror_r(size_t " size ; +.BR "int strerror_r(" "size_t size;" .BI " int " errnum ", char " buf [ size "], size_t " size ); /* XSI-compliant */ .P -.BI "char *strerror_r(size_t " size ; +.BR "char *strerror_r(" "size_t size;" .BI " int " errnum ", char " buf [ size "], size_t " size ); /* GNU-specific */ .P diff --git a/man/man3/strfmon.3 b/man/man3/strfmon.3 index 6fc08fb491..2a469c1c67 100644 --- a/man/man3/strfmon.3 +++ b/man/man3/strfmon.3 @@ -13,10 +13,10 @@ Standard C library .nf .B #include <monetary.h> .P -.BI "ssize_t strfmon(size_t " max ; +.BR "ssize_t strfmon(" "size_t max;" .BI " char " s "[restrict " max "], size_t " max , .BI " const char *restrict " format ", ...);" -.BI "ssize_t strfmon_l(size_t " max ; +.BR "ssize_t strfmon_l(" "size_t max;" .BI " char " s "[restrict " max "], size_t " max ", \ locale_t " locale , .BI " const char *restrict " format ", ...);" diff --git a/man/man3/strfromd.3 b/man/man3/strfromd.3 index fdd365c744..d727483575 100644 --- a/man/man3/strfromd.3 +++ b/man/man3/strfromd.3 @@ -14,13 +14,13 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "int strfromd(size_t " n ; +.BR "int strfromd(" "size_t n;" .BI " char " str "[restrict " n "], size_t " n , .BI " const char *restrict " format ", double " fp ");" -.BI "int strfromf(size_t " n ; +.BR "int strfromf(" "size_t n;" .BI " char " str "[restrict " n "], size_t " n , .BI " const char *restrict " format ", float "fp ");" -.BI "int strfroml(size_t " n ; +.BR "int strfroml(" "size_t n;" .BI " char " str "[restrict " n "], size_t " n , .BI " const char *restrict " format ", long double " fp ");" .fi diff --git a/man/man3/strftime.3 b/man/man3/strftime.3 index 21ad7e9387..4a3f805bbc 100644 --- a/man/man3/strftime.3 +++ b/man/man3/strftime.3 @@ -13,12 +13,12 @@ Standard C library .nf .B #include <time.h> .P -.BI "size_t strftime(size_t " max ; +.BR "size_t strftime(" "size_t max;" .BI " char " s "[restrict " max "], size_t " max , .BI " const char *restrict " format , .BI " const struct tm *restrict " tm ); .P -.BI "size_t strftime_l(size_t " max ; +.BR "size_t strftime_l(" "size_t max;" .BI " char " s "[restrict " max "], size_t " max , .BI " const char *restrict " format , .BI " const struct tm *restrict " tm , diff --git a/man/man3/strncat.3 b/man/man3/strncat.3 index 4edeb2d2ba..13ea833345 100644 --- a/man/man3/strncat.3 +++ b/man/man3/strncat.3 @@ -16,7 +16,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "char *strncat(size_t " ssize ; +.BR "char *strncat(" "size_t ssize;" .BI " char *restrict " dst ", const char " src "[restrict " ssize ], .BI " size_t " ssize ); .fi diff --git a/man/man3/strnlen.3 b/man/man3/strnlen.3 index 1a8cfdaa9e..b966f578a6 100644 --- a/man/man3/strnlen.3 +++ b/man/man3/strnlen.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "size_t strnlen(size_t " maxlen ; +.BR "size_t strnlen(" "size_t maxlen;" .BI " const char " s [ maxlen "], size_t " maxlen ); .fi .P diff --git a/man/man3/strxfrm.3 b/man/man3/strxfrm.3 index d071ec62a3..9c408d5500 100644 --- a/man/man3/strxfrm.3 +++ b/man/man3/strxfrm.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <string.h> .P -.BI "size_t strxfrm(size_t " n ; +.BR "size_t strxfrm(" "size_t n;" .BI " char " dest "[restrict " n "], \ const char " src "[restrict " n ], .BI " size_t " n ); diff --git a/man/man3/swab.3 b/man/man3/swab.3 index 6cd232efec..4291f0d334 100644 --- a/man/man3/swab.3 +++ b/man/man3/swab.3 @@ -14,7 +14,7 @@ Standard C library .BR "#define _XOPEN_SOURCE" " /* See feature_test_macros(7) */" .B #include <unistd.h> .P -.BI "void swab(ssize_t " n ; +.BR "void swab(" "ssize_t n;" .BI " const void " from "[restrict " n "], void " to "[restrict " n ], .BI " ssize_t " n ); .fi diff --git a/man/man3/ttyname.3 b/man/man3/ttyname.3 index 3b162bfa96..63f22b3f45 100644 --- a/man/man3/ttyname.3 +++ b/man/man3/ttyname.3 @@ -14,7 +14,7 @@ Standard C library .B #include <unistd.h> .P .BI "char *ttyname(int " fd ); -.BI "int ttyname_r(size_t " size ; +.BR "int ttyname_r(" "size_t size;" .BI " int " fd ", char " buf [ size "], size_t " size ); .fi .SH DESCRIPTION diff --git a/man/man3/unlocked_stdio.3 b/man/man3/unlocked_stdio.3 index ad1c120775..2aaa5133bd 100644 --- a/man/man3/unlocked_stdio.3 +++ b/man/man3/unlocked_stdio.3 @@ -28,16 +28,16 @@ Standard C library .BI "int fgetc_unlocked(FILE *" stream ); .BI "int fputc_unlocked(int " c ", FILE *" stream ); .P -.BI "size_t fread_unlocked(size_t " size ", size_t " n ; +.BR "size_t fread_unlocked(" "size_t size, size_t n;" .BI " void " ptr "[restrict " size " * " n ], .BI " size_t " size ", size_t " n , .BI " FILE *restrict " stream ); -.BI "size_t fwrite_unlocked(size_t " size ", size_t " n ; +.BR "size_t fwrite_unlocked(" "size_t size, size_t n;" .BI " const void " ptr "[restrict " size " * " n ], .BI " size_t " size ", size_t " n , .BI " FILE *restrict " stream ); .P -.BI "char *fgets_unlocked(int " n ; +.BR "char *fgets_unlocked(" "int n;" .BI " char " s "[restrict " n "], int " n \ ", FILE *restrict " stream ); .BI "int fputs_unlocked(const char *restrict " s ", FILE *restrict " stream ); @@ -52,7 +52,7 @@ Standard C library .BI "wint_t putwc_unlocked(wchar_t " wc ", FILE *" stream ); .BI "wint_t putwchar_unlocked(wchar_t " wc ); .P -.BI "wchar_t *fgetws_unlocked(int " n ; +.BR "wchar_t *fgetws_unlocked(" "int n;" .BI " wchar_t " ws "[restrict " n "], int " n , .BI " FILE *restrict " stream ); .BI "int fputws_unlocked(const wchar_t *restrict " ws , diff --git a/man/man3/wcpncpy.3 b/man/man3/wcpncpy.3 index 96912eb414..636c1cdac0 100644 --- a/man/man3/wcpncpy.3 +++ b/man/man3/wcpncpy.3 @@ -14,7 +14,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wcpncpy(size_t " n ; +.BR "wchar_t *wcpncpy(" "size_t n;" .BI " wchar_t " dest "[restrict " n ], .BI " const wchar_t *restrict " src , .BI " size_t " n ); diff --git a/man/man3/wcscasecmp.3 b/man/man3/wcscasecmp.3 index 48c2e140af..a8f1c897d7 100644 --- a/man/man3/wcscasecmp.3 +++ b/man/man3/wcscasecmp.3 @@ -17,7 +17,7 @@ Standard C library .B #include <wchar.h> .P .BI "int wcscasecmp(const wchar_t *" s1 ", const wchar_t *" s2 ); -.BI "int wcsncasecmp(size_t " n ; +.BR "int wcsncasecmp(" "size_t n;" .BI " const wchar_t " s1 [ n "], const wchar_t " s2 [ n "], \ size_t " n ); .fi diff --git a/man/man3/wcsncat.3 b/man/man3/wcsncat.3 index 1d2371831c..621cbacf0b 100644 --- a/man/man3/wcsncat.3 +++ b/man/man3/wcsncat.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wcsncat(size_t " n ; +.BR "wchar_t *wcsncat(" "size_t n;" .BI " wchar_t *restrict " dest , .BI " const wchar_t " src "[restrict " n ], .BI " size_t " n ); diff --git a/man/man3/wcsncmp.3 b/man/man3/wcsncmp.3 index fac604e88a..873ea3da33 100644 --- a/man/man3/wcsncmp.3 +++ b/man/man3/wcsncmp.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "int wcsncmp(size_t " n ; +.BR "int wcsncmp(" "size_t n;" .BI " const wchar_t " s1 [ n "], const wchar_t " s2 [ n "], \ size_t " n ); .fi diff --git a/man/man3/wcsncpy.3 b/man/man3/wcsncpy.3 index 690cde1895..abe67fee79 100644 --- a/man/man3/wcsncpy.3 +++ b/man/man3/wcsncpy.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wcsncpy(size_t " n ; +.BR "wchar_t *wcsncpy(" "size_t n;" .BI " wchar_t " dest "[restrict " n ], .BI " const wchar_t *restrict " src , .BI " size_t " n ); diff --git a/man/man3/wcsnlen.3 b/man/man3/wcsnlen.3 index a46cc5632d..8e5b1fe3a3 100644 --- a/man/man3/wcsnlen.3 +++ b/man/man3/wcsnlen.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t wcsnlen(size_t " maxlen ; +.BR "size_t wcsnlen(" "size_t maxlen;" .BI " const wchar_t " s [ maxlen "], size_t " maxlen ); .fi .P diff --git a/man/man3/wcsnrtombs.3 b/man/man3/wcsnrtombs.3 index 88809e3c01..703645423a 100644 --- a/man/man3/wcsnrtombs.3 +++ b/man/man3/wcsnrtombs.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t wcsnrtombs(size_t " size ; +.BR "size_t wcsnrtombs(" "size_t size;" .BI " char " dest "[restrict " size "], \ const wchar_t **restrict " src , .BI " size_t " nwc ", size_t " size ", \ diff --git a/man/man3/wcsrtombs.3 b/man/man3/wcsrtombs.3 index 8482d7ca2b..541bc144b7 100644 --- a/man/man3/wcsrtombs.3 +++ b/man/man3/wcsrtombs.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "size_t wcsrtombs(size_t " size ; +.BR "size_t wcsrtombs(" "size_t size;" .BI " char " dest "[restrict " size "], \ const wchar_t **restrict " src , .BI " size_t " size ", mbstate_t *restrict " ps ); diff --git a/man/man3/wcstombs.3 b/man/man3/wcstombs.3 index 2ee54637f7..7ef158212f 100644 --- a/man/man3/wcstombs.3 +++ b/man/man3/wcstombs.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <stdlib.h> .P -.BI "size_t wcstombs(size_t " n ; +.BR "size_t wcstombs(" "size_t n;" .BI " char " dest "[restrict " n "], \ const wchar_t *restrict " src , .BI " size_t " n ); diff --git a/man/man3/wmemchr.3 b/man/man3/wmemchr.3 index 802a6d1b87..4a5a63a2d5 100644 --- a/man/man3/wmemchr.3 +++ b/man/man3/wmemchr.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wmemchr(size_t " n ; +.BR "wchar_t *wmemchr(" "size_t n;" .BI " const wchar_t " s [ n "], wchar_t " c ", size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/wmemcmp.3 b/man/man3/wmemcmp.3 index 1cc86f0ed3..4530760348 100644 --- a/man/man3/wmemcmp.3 +++ b/man/man3/wmemcmp.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "int wmemcmp(size_t " n ; +.BR "int wmemcmp(" "size_t n;" .BI " const wchar_t " s1 [ n "], const wchar_t " s2 [ n "], \ size_t " n ); .fi diff --git a/man/man3/wmemcpy.3 b/man/man3/wmemcpy.3 index bae244ef5b..18af5761dc 100644 --- a/man/man3/wmemcpy.3 +++ b/man/man3/wmemcpy.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wmemcpy(size_t " n ; +.BR "wchar_t *wmemcpy(" "size_t n;" .BI " wchar_t " dest "[restrict " n ], .BI " const wchar_t " src "[restrict " n ], .BI " size_t " n ); diff --git a/man/man3/wmemmove.3 b/man/man3/wmemmove.3 index 402b2ad2d5..847d428051 100644 --- a/man/man3/wmemmove.3 +++ b/man/man3/wmemmove.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wmemmove(size_t " n ; +.BR "wchar_t *wmemmove(" "size_t n;" .BI " wchar_t " dest [ n "], const wchar_t " src [ n "], \ size_t " n ); .fi diff --git a/man/man3/wmemset.3 b/man/man3/wmemset.3 index d6e1c65fda..f389f78c73 100644 --- a/man/man3/wmemset.3 +++ b/man/man3/wmemset.3 @@ -13,7 +13,7 @@ Standard C library .nf .B #include <wchar.h> .P -.BI "wchar_t *wmemset(size_t " n ; +.BR "wchar_t *wmemset(" "size_t n;" .BI " wchar_t " wcs [ n "], wchar_t " wc ", size_t " n ); .fi .SH DESCRIPTION diff --git a/man/man3/wprintf.3 b/man/man3/wprintf.3 index a7324426b9..bdc74d5dae 100644 --- a/man/man3/wprintf.3 +++ b/man/man3/wprintf.3 @@ -18,14 +18,14 @@ Standard C library .BI "int wprintf(const wchar_t *restrict " format ", ...);" .BI "int fwprintf(FILE *restrict " stream , .BI " const wchar_t *restrict " format ", ...);" -.BI "int swprintf(size_t " n ; +.BR "int swprintf(" "size_t n;" .BI " wchar_t " wcs "[restrict " n "], size_t " n , .BI " const wchar_t *restrict " format ", ...);" .P .BI "int vwprintf(const wchar_t *restrict " format ", va_list " args ); .BI "int vfwprintf(FILE *restrict " stream , .BI " const wchar_t *restrict " format ", va_list " args ); -.BI "int vswprintf(size_t " n ; +.BR "int vswprintf(" "size_t n;" .BI " wchar_t " wcs "[restrict " n "], size_t " n , .BI " const wchar_t *restrict " format ", va_list " args ); .fi |