]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man7/man-pages.7
Replace Latin abbreviation "cf.".
[thirdparty/man-pages.git] / man7 / man-pages.7
1 .\" (C) Copyright 1992-1999 Rickard E. Faith and David A. Wheeler
2 .\" (faith@cs.unc.edu and dwheeler@ida.org)
3 .\" and (C) Copyright 2007 Michael Kerrisk <mtk.manpages@gmail.com>
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date. The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein. The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .\" 2007-05-30 created by mtk, using text from old man.7 plus
28 .\" rewrites and additional text.
29 .\"
30 .TH MAN-PAGES 7 2017-09-15 "Linux" "Linux Programmer's Manual"
31 .SH NAME
32 man-pages \- conventions for writing Linux man pages
33 .SH SYNOPSIS
34 .B man
35 .RI [ section ]
36 .I title
37 .SH DESCRIPTION
38 This page describes the conventions that should be employed
39 when writing man pages for the Linux \fIman-pages\fP project,
40 which documents the user-space API provided by the Linux kernel
41 and the GNU C library.
42 The project thus provides most of the pages in Section 2,
43 many of the pages that appear in Sections 3, 4, and 7,
44 and a few of the pages that appear in Sections 1, 5, and 8
45 of the man pages on a Linux system.
46 The conventions described on this page may also be useful
47 for authors writing man pages for other projects.
48 .SS Sections of the manual pages
49 .PP
50 The manual Sections are traditionally defined as follows:
51 .TP 10
52 .B 1 User commands (Programs)
53 Those commands that can be executed by the user from within
54 a shell.
55 .TP
56 .B 2 System calls
57 Those functions which wrap operations performed by the kernel.
58 .TP
59 .B 3 Library calls
60 All library functions excluding the system call wrappers
61 (Most of the
62 .I libc
63 functions).
64 .TP
65 .B 4 Special files (devices)
66 Files found in
67 .I /dev
68 which allow to access to devices through the kernel.
69 .TP
70 .B 5 File formats and configuration files
71 Describes various human-readable file formats and configuration files.
72 .TP
73 .B 6 Games
74 Games and funny little programs available on the system.
75 .TP
76 .B 7 Overview, conventions, and miscellaneous
77 Overviews or descriptions of various topics, conventions and protocols,
78 character set standards, the standard filesystem layout, and miscellaneous
79 other things.
80 .TP
81 .B 8 System management commands
82 Commands like
83 .BR mount (8),
84 many of which only root can execute.
85 .\" .TP
86 .\" .B 9 Kernel routines
87 .\" This is an obsolete manual section.
88 .\" Once it was thought a good idea to document the Linux kernel here,
89 .\" but in fact very little has been documented, and the documentation
90 .\" that exists is outdated already.
91 .\" There are better sources of
92 .\" information for kernel developers.
93 .SS Macro package
94 New manual pages should be marked up using the
95 .B groff an.tmac
96 package described in
97 .BR man (7).
98 This choice is mainly for consistency: the vast majority of
99 existing Linux manual pages are marked up using these macros.
100 .SS Conventions for source file layout
101 Please limit source code line length to no more than about 75 characters
102 wherever possible.
103 This helps avoid line-wrapping in some mail clients when patches are
104 submitted inline.
105 .PP
106 New sentences should be started on new lines.
107 This makes it easier to see the effect of patches,
108 which often operate at the level of individual sentences.
109 .SS Title line
110 The first command in a man page should be a
111 .B TH
112 command:
113 .PP
114 .RS
115 .B \&.TH
116 .I "title section date source manual"
117 .RE
118 .PP
119 where:
120 .RS
121 .TP 10
122 .I title
123 The title of the man page, written in all caps (e.g.,
124 .IR MAN-PAGES ).
125 .TP
126 .I section
127 The section number in which the man page should be placed (e.g.,
128 .IR 7 ).
129 .TP
130 .I date
131 The date of the last nontrivial change that was made to the man page.
132 (Within the
133 .I man-pages
134 project, the necessary updates to these timestamps are handled
135 automatically by scripts, so there is no need to manually update
136 them as part of a patch.)
137 Dates should be written in the form YYYY-MM-DD.
138 .TP
139 .I source
140 The source of the command, function, or system call.
141 .IP
142 For those few \fIman-pages\fP pages in Sections 1 and 8,
143 probably you just want to write
144 .IR GNU .
145 .IP
146 For system calls, just write
147 .IR "Linux" .
148 (An earlier practice was to write the version number
149 of the kernel from which the manual page was being written/checked.
150 However, this was never done consistently, and so was
151 probably worse than including no version number.
152 Henceforth, avoid including a version number.)
153 .IP
154 For library calls that are part of glibc or one of the
155 other common GNU libraries, just use
156 .IR "GNU C Library" ", " GNU ,
157 or an empty string.
158 .IP
159 For Section 4 pages, use
160 .IR "Linux" .
161 .IP
162 In cases of doubt, just write
163 .IR Linux ", or " GNU .
164 .TP
165 .I manual
166 The title of the manual (e.g., for Section 2 and 3 pages in
167 the \fIman-pages\fP package, use
168 .IR "Linux Programmer's Manual" ).
169 .RE
170 .SS Sections within a manual page
171 The list below shows conventional or suggested sections.
172 Most manual pages should include at least the
173 .B highlighted
174 sections.
175 Arrange a new manual page so that sections
176 are placed in the order shown in the list.
177 .PP
178 .in +4n
179 .nf
180 \fBNAME\fP
181 \fBSYNOPSIS\fP
182 CONFIGURATION [Normally only in Section 4]
183 \fBDESCRIPTION\fP
184 OPTIONS [Normally only in Sections 1, 8]
185 EXIT STATUS [Normally only in Sections 1, 8]
186 RETURN VALUE [Normally only in Sections 2, 3]
187 .\" May 07: Few current man pages have an ERROR HANDLING section,,,
188 .\" ERROR HANDLING,
189 ERRORS [Typically only in Sections 2, 3]
190 .\" May 07: Almost no current man pages have a USAGE section,,,
191 .\" USAGE,
192 .\" DIAGNOSTICS,
193 .\" May 07: Almost no current man pages have a SECURITY section,,,
194 .\" SECURITY,
195 ENVIRONMENT
196 FILES
197 VERSIONS [Normally only in Sections 2, 3]
198 ATTRIBUTES [Normally only in Sections 2, 3]
199 CONFORMING TO
200 NOTES
201 BUGS
202 EXAMPLE
203 .\" AUTHORS sections are discouraged
204 .\" AUTHORS [Discouraged]
205 \fBSEE ALSO\fP
206 .fi
207 .in
208 .PP
209 .IR "Where a traditional heading would apply" ", " "please use it" ;
210 this kind of consistency can make the information easier to understand.
211 If you must, you can create your own
212 headings if they make things easier to understand (this can
213 be especially useful for pages in Sections 4 and 5).
214 However, before doing this, consider whether you could use the
215 traditional headings, with some subsections (\fI.SS\fP) within
216 those sections.
217 .PP
218 The following list elaborates on the contents of each of
219 the above sections.
220 .TP 14
221 .B NAME
222 The name of this manual page.
223 .IP
224 See
225 .BR man (7)
226 for important details of the line(s) that should follow the
227 \fB.SH NAME\fP command.
228 All words in this line (including the word immediately
229 following the "\\\-") should be in lowercase,
230 except where English or technical terminological convention
231 dictates otherwise.
232 .TP
233 .B SYNOPSIS
234 A brief summary of the command or function's interface.
235 .IP
236 For commands, this shows the syntax of the command and its arguments
237 (including options);
238 boldface is used for as-is text and italics are used to
239 indicate replaceable arguments.
240 Brackets ([]) surround optional arguments, vertical bars (|)
241 separate choices, and ellipses (\&...) can be repeated.
242 For functions, it shows any required data declarations or
243 .B #include
244 directives, followed by the function declaration.
245 .IP
246 Where a feature test macro must be defined in order to obtain
247 the declaration of a function (or a variable) from a header file,
248 then the SYNOPSIS should indicate this, as described in
249 .BR feature_test_macros (7).
250 .\" FIXME . Say something here about compiler options
251 .TP
252 .B CONFIGURATION
253 Configuration details for a device.
254 .IP
255 This section normally appears only in Section 4 pages.
256 .TP
257 .B DESCRIPTION
258 An explanation of what the program, function, or format does.
259 .IP
260 Discuss how it interacts with files and standard input, and what it
261 produces on standard output or standard error.
262 Omit internals and implementation details unless they're critical for
263 understanding the interface.
264 Describe the usual case;
265 for information on command-line options of a program use the
266 .B OPTIONS
267 section.
268 .\" If there is some kind of input grammar or complex set of subcommands,
269 .\" consider describing them in a separate
270 .\" .B USAGE
271 .\" section (and just place an overview in the
272 .\" .B DESCRIPTION
273 .\" section).
274 .IP
275 When describing new behavior or new flags for
276 a system call or library function,
277 be careful to note the kernel or C library version
278 that introduced the change.
279 The preferred method of noting this information for flags is as part of a
280 .B .TP
281 list, in the following form (here, for a new system call flag):
282 .RS 22
283 .TP
284 .BR XYZ_FLAG " (since Linux 3.7)"
285 Description of flag...
286 .RE
287 .IP
288 Including version information is especially useful to users
289 who are constrained to using older kernel or C library versions
290 (which is typical in embedded systems, for example).
291 .TP
292 .B OPTIONS
293 A description of the command-line options accepted by a
294 program and how they change its behavior.
295 .IP
296 This section should appear only for Section 1 and 8 manual pages.
297 .\" .TP
298 .\" .B USAGE
299 .\" describes the grammar of any sublanguage this implements.
300 .TP
301 .B EXIT STATUS
302 A list of the possible exit status values of a program and
303 the conditions that cause these values to be returned.
304 .IP
305 This section should appear only for Section 1 and 8 manual pages.
306 .TP
307 .B RETURN VALUE
308 For Section 2 and 3 pages, this section gives a
309 list of the values the library routine will return to the caller
310 and the conditions that cause these values to be returned.
311 .TP
312 .B ERRORS
313 For Section 2 and 3 manual pages, this is a list of the
314 values that may be placed in
315 .I errno
316 in the event of an error, along with information about the cause
317 of the errors.
318 .IP
319 Where several different conditions produce the same error,
320 the preferred approach is to create separate list entries
321 (with duplicate error names) for each of the conditions.
322 This makes the separate conditions clear, may make the list easier to read,
323 and allows metainformation
324 (e.g., kernel version number where the condition first became applicable)
325 to be more easily marked for each condition.
326 .IP
327 .IR "The error list should be in alphabetical order" .
328 .TP
329 .B ENVIRONMENT
330 A list of all environment variables that affect the program or function
331 and how they affect it.
332 .TP
333 .B FILES
334 A list of the files the program or function uses, such as
335 configuration files, startup files,
336 and files the program directly operates on.
337 .IP
338 Give the full pathname of these files, and use the installation
339 process to modify the directory part to match user preferences.
340 For many programs, the default installation location is in
341 .IR /usr/local ,
342 so your base manual page should use
343 .I /usr/local
344 as the base.
345 .\" May 07: Almost no current man pages have a DIAGNOSTICS section;
346 .\" "RETURN VALUE" or "EXIT STATUS" is preferred.
347 .\" .TP
348 .\" .B DIAGNOSTICS
349 .\" gives an overview of the most common error messages and how to
350 .\" cope with them.
351 .\" You don't need to explain system error messages
352 .\" or fatal signals that can appear during execution of any program
353 .\" unless they're special in some way to the program.
354 .\"
355 .\" May 07: Almost no current man pages have a SECURITY section.
356 .\".TP
357 .\".B SECURITY
358 .\"discusses security issues and implications.
359 .\"Warn about configurations or environments that should be avoided,
360 .\"commands that may have security implications, and so on, especially
361 .\"if they aren't obvious.
362 .\"Discussing security in a separate section isn't necessary;
363 .\"if it's easier to understand, place security information in the
364 .\"other sections (such as the
365 .\" .B DESCRIPTION
366 .\" or
367 .\" .B USAGE
368 .\" section).
369 .\" However, please include security information somewhere!
370 .TP
371 .B ATTRIBUTES
372 A summary of various attributes of the function(s) documented on this page.
373 See
374 .BR attributes (7)
375 for further details.
376 .TP
377 .B VERSIONS
378 A brief summary of the Linux kernel or glibc versions where a
379 system call or library function appeared,
380 or changed significantly in its operation.
381 .IP
382 As a general rule, every new interface should
383 include a VERSIONS section in its manual page.
384 Unfortunately,
385 many existing manual pages don't include this information
386 (since there was no policy to do so when they were written).
387 Patches to remedy this are welcome,
388 but, from the perspective of programmers writing new code,
389 this information probably matters only in the case of kernel
390 interfaces that have been added in Linux 2.4 or later
391 (i.e., changes since kernel 2.2),
392 and library functions that have been added to glibc since version 2.1
393 (i.e., changes since glibc 2.0).
394 .IP
395 The
396 .BR syscalls (2)
397 manual page also provides information about kernel versions
398 in which various system calls first appeared.
399 .TP
400 .B CONFORMING TO
401 A description of any standards or conventions that relate to the function
402 or command described by the manual page.
403 .IP
404 The preferred terms to use for the various standards are listed as
405 headings in
406 .BR standards (7).
407 .IP
408 For a page in Section 2 or 3,
409 this section should note the POSIX.1
410 version(s) that the call conforms to,
411 and also whether the call is specified in C99.
412 (Don't worry too much about other standards like SUS, SUSv2, and XPG,
413 or the SVr4 and 4.xBSD implementation standards,
414 unless the call was specified in those standards,
415 but isn't in the current version of POSIX.1.)
416 .IP
417 If the call is not governed by any standards but commonly
418 exists on other systems, note them.
419 If the call is Linux-specific, note this.
420 .IP
421 If this section consists of just a list of standards
422 (which it commonly does),
423 terminate the list with a period (\(aq.\(aq).
424 .TP
425 .B NOTES
426 Miscellaneous notes.
427 .IP
428 For Section 2 and 3 man pages you may find it useful to include
429 subsections (\fBSS\fP) named \fILinux Notes\fP and \fIGlibc Notes\fP.
430 .IP
431 In Section 2, use the heading
432 .I "C library/kernel differences"
433 to mark off notes that describe the differences (if any) between
434 the C library wrapper function for a system call and
435 the raw system call interface provided by the kernel.
436 .TP
437 .B BUGS
438 A list of limitations, known defects or inconveniences,
439 and other questionable activities.
440 .TP
441 .B EXAMPLE
442 One or more examples demonstrating how this function, file or
443 command is used.
444 .IP
445 For details on writing example programs,
446 see \fIExample Programs\fP below.
447 .TP
448 .B AUTHORS
449 A list of authors of the documentation or program.
450 .IP
451 \fBUse of an AUTHORS section is strongly discouraged\fP.
452 Generally, it is better not to clutter every page with a list
453 of (over time potentially numerous) authors;
454 if you write or significantly amend a page,
455 add a copyright notice as a comment in the source file.
456 If you are the author of a device driver and want to include
457 an address for reporting bugs, place this under the BUGS section.
458 .TP
459 .B SEE ALSO
460 A comma-separated list of related man pages, possibly followed by
461 other related pages or documents.
462 .IP
463 The list should be ordered by section number and
464 then alphabetically by name.
465 Do not terminate this list with a period.
466 .IP
467 Where the SEE ALSO list contains many long manual page names,
468 to improve the visual result of the output, it may be useful to employ the
469 .I .ad l
470 (don't right justify)
471 and
472 .I .nh
473 (don't hyphenate)
474 directives.
475 Hyphenation of individual page names can be prevented
476 by preceding words with the string "\\%".
477 .IP
478 Given the distributed, autonomous nature of FOSS projects
479 and their documentation, it is sometimes necessary\(emand in many cases
480 desirable\(emthat the SEE ALSO section includes references to
481 manual pages provided by other projects.
482 .SH STYLE GUIDE
483 The following subsections describe the preferred style for the
484 .IR man-pages
485 project.
486 For details not covered below, the Chicago Manual of Style
487 is usually a good source;
488 try also grepping for preexisting usage in the project source tree.
489 .SS Use of gender-neutral language
490 As far as possible, use gender-neutral language in the text of man
491 pages.
492 Use of "they" ("them", "themself", "their") as a gender-neutral singular
493 pronoun is acceptable.
494 .\"
495 .SS Formatting conventions for manual pages describing commands
496 .PP
497 For manual pages that describe a command (typically in Sections 1 and 8),
498 the arguments are always specified using italics,
499 .IR "even in the SYNOPSIS section" .
500 .PP
501 The name of the command, and its options, should
502 always be formatted in bold.
503 .\"
504 .SS Formatting conventions for manual pages describing functions
505 For manual pages that describe functions (typically in Sections 2 and 3),
506 the arguments are always specified using italics,
507 .IR "even in the SYNOPSIS section" ,
508 where the rest of the function is specified in bold:
509 .PP
510 .BI " int myfunction(int " argc ", char **" argv );
511 .PP
512 Variable names should, like argument names, be specified in italics.
513 .PP
514 Any reference to the subject of the current manual page
515 should be written with the name in bold followed by
516 a pair of parentheses in Roman (normal) font.
517 For example, in the
518 .BR fcntl (2)
519 man page, references to the subject of the page would be written as:
520 .BR fcntl ().
521 The preferred way to write this in the source file is:
522 .PP
523 .EX
524 .BR fcntl ()
525 .EE
526 .PP
527 (Using this format, rather than the use of "\\fB...\\fP()"
528 makes it easier to write tools that parse man page source files.)
529 .\"
530 .SS Formatting conventions (general)
531 Filenames (whether pathnames, or references to header files)
532 are always in italics (e.g.,
533 .IR <stdio.h> ),
534 except in the SYNOPSIS section, where included files are in bold (e.g.,
535 .BR "#include <stdio.h>" ).
536 When referring to a standard header file include,
537 specify the header file surrounded by angle brackets,
538 in the usual C way (e.g.,
539 .IR <stdio.h> ).
540 .PP
541 Special macros, which are usually in uppercase, are in bold (e.g.,
542 .BR MAXINT ).
543 Exception: don't boldface NULL.
544 .PP
545 When enumerating a list of error codes, the codes are in bold (this list
546 usually uses the
547 .B \&.TP
548 macro).
549 .PP
550 Complete commands should, if long,
551 be written as an indented line on their own,
552 with a blank line before and after the command, for example
553 .PP
554 .in +4n
555 .EX
556 man 7 man-pages
557 .EE
558 .in
559 .PP
560 If the command is short, then it can be included inline in the text,
561 in italic format, for example,
562 .IR "man 7 man-pages" .
563 In this case, it may be worth using nonbreaking spaces
564 ("\e\ ") at suitable places in the command.
565 Command options should be written in italics (e.g.,
566 .IR \-l ).
567 .PP
568 Expressions, if not written on a separate indented line, should
569 be specified in italics.
570 Again, the use of nonbreaking spaces may be appropriate
571 if the expression is inlined with normal text.
572 .PP
573 When showing example shell sessions, user input should be formatted in bold, for example
574 .PP
575 .in +4n
576 .EX
577 $ \fBdate\fP
578 Thu Jul 7 13:01:27 CEST 2016
579 .EE
580 .in
581 .PP
582 .PP
583 Any reference to another man page
584 should be written with the name in bold,
585 .I always
586 followed by the section number,
587 formatted in Roman (normal) font, without any
588 separating spaces (e.g.,
589 .BR intro (2)).
590 The preferred way to write this in the source file is:
591 .PP
592 .EX
593 .BR intro (2)
594 .EE
595 .PP
596 (Including the section number in cross references lets tools like
597 .BR man2html (1)
598 create properly hyperlinked pages.)
599 .PP
600 Control characters should be written in bold face,
601 with no quotes; for example,
602 .BR ^X .
603 .SS Spelling
604 Starting with release 2.59,
605 .I man-pages
606 follows American spelling conventions
607 (previously, there was a random mix of British and American spellings);
608 please write all new pages and patches according to these conventions.
609 .PP
610 Aside from the well-known spelling differences,
611 there are a few other subtleties to watch for:
612 .IP * 3
613 American English tends to use the forms "backward", "upward", "toward",
614 and so on
615 rather than the British forms "backwards", "upwards", "towards", and so on.
616 .SS BSD version numbers
617 The classical scheme for writing BSD version numbers is
618 .IR x.yBSD ,
619 where
620 .I x.y
621 is the version number (e.g., 4.2BSD).
622 Avoid forms such as
623 .IR "BSD 4.3" .
624 .SS Capitalization
625 In subsection ("SS") headings,
626 capitalize the first word in the heading, but otherwise use lowercase,
627 except where English usage (e.g., proper nouns) or programming
628 language requirements (e.g., identifier names) dictate otherwise.
629 For example:
630 .PP
631 .EX
632 .SS Unicode under Linux
633 .EE
634 .\"
635 .SS Indentation of structure definitions, shell session logs, and so on
636 When structure definitions, shell session logs, and so on are included
637 in running text, indent them by 4 spaces (i.e., a block enclosed by
638 .I ".in\ +4n"
639 and
640 .IR ".in" ),
641 format them using the
642 .I .EX
643 and
644 .I EE
645 macros, and surround them with suitable paragraph markers (either
646 .I .PP
647 or
648 .IR .IP ).
649 For example:
650 .PP
651 .in +4n
652 .EX
653 .PP
654 .in +4n
655 .EX
656 int
657 main(int argc, char *argv[])
658 {
659 return 0;
660 }
661 .EE
662 .in
663 .PP
664 .EE
665 .in
666 .SS Preferred terms
667 The following table lists some preferred terms to use in man pages,
668 mainly to ensure consistency across pages.
669 .TS
670 l l l
671 ---
672 l l l.
673 Term Avoid using Notes
674
675 bit mask bitmask
676 built-in builtin
677 Epoch epoch T{
678 For the UNIX Epoch (00:00:00, 1 Jan 1970 UTC)
679 T}
680 filename file name
681 filesystem file system
682 hostname host name
683 inode i-node
684 lowercase lower case, lower-case
685 pathname path name
686 pseudoterminal pseudo-terminal
687 privileged port T{
688 reserved port,
689 system port
690 T}
691 real-time T{
692 realtime,
693 real time
694 T}
695 run time runtime
696 saved set-group-ID T{
697 saved group ID,
698 saved set-GID
699 T}
700 saved set-user-ID T{
701 saved user ID,
702 saved set-UID
703 T}
704 set-group-ID set-GID, setgid
705 set-user-ID set-UID, setuid
706 superuser T{
707 super user,
708 super-user
709 T}
710 superblock T{
711 super block,
712 super-block
713 T}
714 timestamp time stamp
715 timezone time zone
716 uppercase upper case, upper-case
717 usable useable
718 user space userspace
719 username user name
720 x86-64 x86_64 T{
721 Except if referring to result of "uname\ \-m" or similar
722 T}
723 zeros zeroes
724 .TE
725 .PP
726 See also the discussion
727 .IR "Hyphenation of attributive compounds"
728 below.
729 .SS Terms to avoid
730 The following table lists some terms to avoid using in man pages,
731 along with some suggested alternatives,
732 mainly to ensure consistency across pages.
733 .TS
734 l l l
735 ---
736 l l l.
737 Avoid Use instead Notes
738
739 32bit 32-bit T{
740 same for 8-bit, 16-bit, etc.
741 T}
742 current process calling process T{
743 A common mistake made by kernel programmers when writing man pages
744 T}
745 manpage T{
746 man page, manual page
747 T}
748 minus infinity negative infinity
749 non-root unprivileged user
750 non-superuser unprivileged user
751 nonprivileged unprivileged
752 OS operating system
753 plus infinity positive infinity
754 pty pseudoterminal
755 tty terminal
756 Unices UNIX systems
757 Unixes UNIX systems
758 .TE
759 .SS Trademarks
760 Use the correct spelling and case for trademarks.
761 The following is a list of the correct spellings of various
762 relevant trademarks that are sometimes misspelled:
763 .PP
764 DG/UX
765 HP-UX
766 UNIX
767 UnixWare
768 .SS NULL, NUL, null pointer, and null character
769 A
770 .IR "null pointer"
771 is a pointer that points to nothing,
772 and is normally indicated by the constant
773 .IR NULL .
774 On the other hand,
775 .I NUL
776 is the
777 .IR "null byte",
778 a byte with the value 0, represented in C via the character constant
779 .IR \(aq\e0\(aq .
780 .PP
781 The preferred term for the pointer is "null pointer" or simply "NULL";
782 avoid writing "NULL pointer".
783 .PP
784 The preferred term for the byte is "null byte".
785 Avoid writing "NUL", since it is too easily confused with "NULL".
786 Avoid also the terms "zero byte" and "null character".
787 The byte that terminates a C string should be described
788 as "the terminating null byte";
789 strings may be described as "null-terminated",
790 but avoid the use of "NUL-terminated".
791 .SS Hyperlinks
792 For hyperlinks, use the
793 .IR .UR / .UE
794 macro pair
795 (see
796 .BR groff_man (7)).
797 This produces proper hyperlinks that can be used in a web browser,
798 when rendering a page with, say:
799 .PP
800 BROWSER=firefox man -H pagename
801 .SS Use of e.g., i.e., etc., a.k.a., and similar
802 In general, the use of abbreviations such as "e.g.", "i.e.", "etc.",
803 "cf.", and "a.k.a." should be avoided,
804 in favor of suitable full wordings
805 ("for example", "that is", "compare to", "and so on", "also known as").
806 .PP
807 The only place where such abbreviations may be acceptable is in
808 .I short
809 parenthetical asides (e.g., like this one).
810 .PP
811 Always include periods in such abbreviations, as shown here.
812 In addition, "e.g." and "i.e." should always be followed by a comma.
813 .SS Em-dashes
814 The way to write an em-dash\(emthe glyph that appears
815 at either end of this subphrase\(emin *roff is with the macro "\\(em".
816 (On an ASCII terminal, an em-dash typically renders as two hyphens,
817 but in other typographical contexts it renders as a long dash.)
818 Em-dashes should be written
819 .I without
820 surrounding spaces.
821 .SS Hyphenation of attributive compounds
822 Compound terms should be hyphenated when used attributively
823 (i.e., to qualify a following noun). Some examples:
824 .PP
825 32-bit value
826 command-line argument
827 floating-point number
828 run-time check
829 user-space function
830 wide-character string
831 .SS Hyphenation with multi, non, pre, re, sub, and so on
832 The general tendency in modern English is not to hyphenate
833 after prefixes such as "multi", "non", "pre", "re", "sub", and so on.
834 Manual pages should generally follow this rule when these prefixes are
835 used in natural English constructions with simple suffixes.
836 The following list gives some examples of the preferred forms:
837 .PP
838 interprocess
839 multithreaded
840 multiprocess
841 nonblocking
842 nondefault
843 nonempty
844 noninteractive
845 nonnegative
846 nonportable
847 nonzero
848 preallocated
849 precreate
850 prerecorded
851 reestablished
852 reinitialize
853 rearm
854 reread
855 subcomponent
856 subdirectory
857 subsystem
858 .PP
859 Hyphens should be retained when the prefixes are used in nonstandard
860 English words, with trademarks, proper nouns, acronyms, or compound terms.
861 Some examples:
862 .PP
863 non-ASCII
864 non-English
865 non-NULL
866 non-real-time
867 .PP
868 Finally, note that "re-create" and "recreate" are two different verbs,
869 and the former is probably what you want.
870 .SS Real minus character
871 Where a real minus character is required (e.g., for numbers such as \-1,
872 for man page cross references such as
873 .BR utf\-8 (7),
874 or when writing options that have a leading dash, such as in
875 .IR "ls\ \-l"),
876 use the following form in the man page source:
877 .PP
878 \\\-
879 .PP
880 This guideline applies also to code examples.
881 .SS Character constants
882 To produce single quotes that render well in both ASCII and UTF-8,
883 use the following form for character constants in the man page source:
884 .PP
885 \\(aqC\\(aq
886 .PP
887 where
888 .I C
889 is the quoted character.
890 This guideline applies also to character constants used in code examples.
891 .SS Example programs and shell sessions
892 Manual pages may include example programs demonstrating how to
893 use a system call or library function.
894 However, note the following:
895 .IP * 3
896 Example programs should be written in C.
897 .IP *
898 An example program is necessary and useful only if it demonstrates
899 something beyond what can easily be provided in a textual
900 description of the interface.
901 An example program that does nothing
902 other than call an interface usually serves little purpose.
903 .IP *
904 Example programs should be fairly short (preferably less than 100 lines;
905 ideally less than 50 lines).
906 .IP *
907 Example programs should do error checking after system calls and
908 library function calls.
909 .IP *
910 Example programs should be complete, and compile without
911 warnings when compiled with \fIcc\ \-Wall\fP.
912 .IP *
913 Where possible and appropriate, example programs should allow
914 experimentation, by varying their behavior based on inputs
915 (ideally from command-line arguments, or alternatively, via
916 input read by the program).
917 .IP *
918 Example programs should be laid out according to Kernighan and
919 Ritchie style, with 4-space indents.
920 (Avoid the use of TAB characters in source code!)
921 The following command can be used to format your source code to
922 something close to the preferred style:
923 .IP
924 indent \-npro \-kr \-i4 \-ts4 \-sob \-l72 \-ss \-nut \-psl prog.c
925 .IP *
926 For consistency, all example programs should terminate using either of:
927 .IP
928 exit(EXIT_SUCCESS);
929 exit(EXIT_FAILURE);
930 .IP
931 Avoid using the following forms to terminate a program:
932 .IP
933 exit(0);
934 exit(1);
935 return n;
936 .IP *
937 If there is extensive explanatory text before the
938 program source code, mark off the source code
939 with a subsection heading
940 .IR "Program source" ,
941 as in:
942 .IP
943 .SS Program source
944 .IP
945 Always do this if the explanatory text includes a shell session log.
946 .PP
947 If you include a shell session log demonstrating the use of a program
948 or other system feature:
949 .IP * 3
950 Place the session log above the source code listing
951 .IP *
952 Indent the session log by four spaces.
953 .IP *
954 Boldface the user input text,
955 to distinguish it from output produced by the system.
956 .PP
957 For some examples of what example programs should look like, see
958 .BR wait (2)
959 and
960 .BR pipe (2).
961 .SH EXAMPLE
962 For canonical examples of how man pages in the
963 .I man-pages
964 package should look, see
965 .BR pipe (2)
966 and
967 .BR fcntl (2).
968 .SH SEE ALSO
969 .BR man (1),
970 .BR man2html (1),
971 .BR attributes (7),
972 .BR groff (7),
973 .BR groff_man (7),
974 .BR man (7),
975 .BR mdoc (7)