Wrapped long source lines

This commit is contained in:
Michael Kerrisk 2008-07-06 15:10:32 +00:00
parent 34e8ac037a
commit 3d54a9102a
31 changed files with 66 additions and 33 deletions

View File

@ -1,4 +1,5 @@
.\" Copyright Michael Haardt (michael@cantor.informatik.rwth-aachen.de) Sat Aug 27 20:43:50 MET DST 1994 .\" Copyright Michael Haardt (michael@cantor.informatik.rwth-aachen.de)
.\" Sat Aug 27 20:43:50 MET DST 1994
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Written Sat Mar 8 10:35:08 MEZ 1997 by J. "MUFTI" Scheurich (mufti@csv.ica.uni-stuttgart.de) .\" Written Sat Mar 8 10:35:08 MEZ 1997 by
.\" J. "MUFTI" Scheurich (mufti@csv.ica.uni-stuttgart.de)
.\" This page is licensed under the GNU General Public License .\" This page is licensed under the GNU General Public License
.\" .\"
.TH __SETFPUCW 3 1997-03-08 "Linux" "Linux Programmer's Manual" .TH __SETFPUCW 3 1997-03-08 "Linux" "Linux Programmer's Manual"

View File

@ -1,4 +1,5 @@
.\" Michael Haardt (michael@cantor.informatik.rwth.aachen.de) Sat Sep 3 22:00:30 MET DST 1994 .\" Michael Haardt (michael@cantor.informatik.rwth.aachen.de)
.\" Sat Sep 3 22:00:30 MET DST 1994
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,7 +1,8 @@
.\" Hey Emacs! This file is -*- nroff -*- source. .\" Hey Emacs! This file is -*- nroff -*- source.
.\" .\"
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk) .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
.\" and Copyright (c) 2008 Linux Foundation, written by Michael Kerrisk <mtk.manpages@gmail.com> .\" and Copyright (c) 2008 Linux Foundation, written by Michael Kerrisk
.\" <mtk.manpages@gmail.com>
.\" .\"
.\" Permission is granted to make and distribute verbatim copies of this .\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are .\" manual provided the copyright notice and this permission notice are

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -19,7 +19,8 @@ mbrtowc \- convert a multibyte sequence to a wide character
.nf .nf
.B #include <wchar.h> .B #include <wchar.h>
.sp .sp
.BI "size_t mbrtowc(wchar_t *" pwc ", const char *" s ", size_t " n ", mbstate_t *" ps ); .BI "size_t mbrtowc(wchar_t *" pwc ", const char *" s ", size_t " n \
", mbstate_t *" ps );
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The main case for this function is when \fIs\fP is not NULL and \fIpwc\fP is The main case for this function is when \fIs\fP is not NULL and \fIpwc\fP is

View File

@ -54,7 +54,8 @@ vsnprintf \- formatted output conversion
.br .br
.BI "int vsprintf(char *" str ", const char *" format ", va_list " ap ); .BI "int vsprintf(char *" str ", const char *" format ", va_list " ap );
.br .br
.BI "int vsnprintf(char *" str ", size_t " size ", const char *" format ", va_list " ap ); .BI "int vsnprintf(char *" str ", size_t " size ", const char *" format \
", va_list " ap );
.sp .sp
.in -4n .in -4n
Feature Test Macro Requirements for glibc (see Feature Test Macro Requirements for glibc (see

View File

@ -23,7 +23,8 @@
.TH STDIO_EXT 3 2001-12-16 "" "Linux Programmer's Manual" .TH STDIO_EXT 3 2001-12-16 "" "Linux Programmer's Manual"
.SH NAME .SH NAME
__fbufsize, __flbf, __fpending, __fpurge, __freadable, __fbufsize, __flbf, __fpending, __fpurge, __freadable,
__freading, __fsetlocking, __fwritable, __fwriting, _flushlbf \- interfaces to stdio FILE structure __freading, __fsetlocking, __fwritable, __fwriting, _flushlbf \-
interfaces to stdio FILE structure
.SH SYNOPSIS .SH SYNOPSIS
.B #include <stdio.h> .B #include <stdio.h>
.br .br

View File

@ -29,7 +29,8 @@ updwtmp, logwtmp \- append an entry to the wtmp file
.sp .sp
.BI "void updwtmp(const char *" wtmp_file ", const struct utmp *" ut ); .BI "void updwtmp(const char *" wtmp_file ", const struct utmp *" ut );
.br .br
.BI "void logwtmp(const char *" line ", const char *" name ", const char *" host ); .BI "void logwtmp(const char *" line ", const char *" name \
", const char *" host );
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
.BR updwtmp () .BR updwtmp ()

View File

@ -29,9 +29,11 @@ wcstoimax, wcstoumax \- convert wide-character string to integer
.br .br
.B #include <inttypes.h> .B #include <inttypes.h>
.sp .sp
.BI "intmax_t wcstoimax(const wchar_t *" nptr ", wchar_t **" endptr ", int " base ); .BI "intmax_t wcstoimax(const wchar_t *" nptr ", wchar_t **" endptr \
", int " base );
.br .br
.BI "uintmax_t wcstoumax(const wchar_t *" nptr ", wchar_t **" endptr ", int " base ); .BI "uintmax_t wcstoumax(const wchar_t *" nptr ", wchar_t **" endptr \
", int " base );
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
These functions are just like These functions are just like

View File

@ -18,7 +18,8 @@ wcstok \- split wide-character string into tokens
.nf .nf
.B #include <wchar.h> .B #include <wchar.h>
.sp .sp
.BI "wchar_t *wcstok(wchar_t *" wcs ", const wchar_t *" delim ", wchar_t **" ptr ); .BI "wchar_t *wcstok(wchar_t *" wcs ", const wchar_t *" delim \
", wchar_t **" ptr );
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The The

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,5 +1,6 @@
'\" t '\" t
.\" Copyright (c) Michael Haardt (michael@cantor.informatik.rwth-aachen.de), Sun Jan 15 19:16:33 1995 .\" Copyright (c) Michael Haardt (michael@cantor.informatik.rwth-aachen.de),
.\" Sun Jan 15 19:16:33 1995
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Thu May 20 20:45:48 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Thu May 20 20:45:48 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as
@ -21,7 +22,8 @@
.\" USA. .\" USA.
.\" .\"
.\" Modified formatting Sat Jul 24 17:13:38 1993, Rik Faith (faith@cs.unc.edu) .\" Modified formatting Sat Jul 24 17:13:38 1993, Rik Faith (faith@cs.unc.edu)
.\" Modified (extensions and corrections) Sun May 1 14:21:25 MET DST 1994 Michael Haardt .\" Modified (extensions and corrections)
.\" Sun May 1 14:21:25 MET DST 1994 Michael Haardt
.\" If mistakes in the capabilities are found, please send a bug report to: .\" If mistakes in the capabilities are found, please send a bug report to:
.\" michael@moria.de .\" michael@moria.de
.\" Modified Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond (esr@thyrsus.com) .\" Modified Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond (esr@thyrsus.com)

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@cantor.informatik.rwth-aachen.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@cantor.informatik.rwth-aachen.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as

View File

@ -1,4 +1,5 @@
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
.\" Fri Apr 2 11:32:09 MET DST 1993
.\" .\"
.\" This is free documentation; you can redistribute it and/or .\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as .\" modify it under the terms of the GNU General Public License as