Merge tag 'snapshot-start' into stable
[gnulib.git] / doc / standards.texi
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename standards.info
4 @settitle GNU Coding Standards
5 @c This date is automagically updated when you save this file:
6 <<<<<<< HEAD
7 @set lastupdate December 10, 2011
8 =======
9 @set lastupdate March 8, 2012
10 >>>>>>> snapshot-start
11 @c %**end of header
12
13 @dircategory GNU organization
14 @direntry
15 * Standards: (standards).       GNU coding standards.
16 @end direntry
17
18 @c @setchapternewpage odd
19 @setchapternewpage off
20
21 @c Put everything in one index (arbitrarily chosen to be the concept index).
22 @syncodeindex fn cp
23 @syncodeindex ky cp
24 @syncodeindex pg cp
25 @syncodeindex vr cp
26
27 @c This is used by a cross ref in make-stds.texi
28 @set CODESTD  1
29
30 @copying
31 The GNU coding standards, last updated @value{lastupdate}.
32
33 Copyright @copyright{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
34 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
35 2011, 2012 Free Software Foundation, Inc.
36
37 Permission is granted to copy, distribute and/or modify this document
38 under the terms of the GNU Free Documentation License, Version 1.3 or
39 any later version published by the Free Software Foundation; with no
40 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
41 Texts.  A copy of the license is included in the section entitled
42 ``GNU Free Documentation License''.
43 @end copying
44
45 @titlepage
46 @title GNU Coding Standards
47 @author Richard Stallman, et al.
48 @author last updated @value{lastupdate}
49 @page
50 @vskip 0pt plus 1filll
51 @insertcopying
52 @end titlepage
53
54 @contents
55
56 @ifnottex
57 @node Top
58 @top GNU Coding Standards
59
60 @insertcopying
61 @end ifnottex
62
63 @menu
64 * Preface::                     About the GNU Coding Standards.
65 * Legal Issues::                Keeping free software free.
66 * Design Advice::               General program design.
67 * Program Behavior::            Program behavior for all programs
68 * Writing C::                   Making the best use of C.
69 * Documentation::               Documenting programs.
70 * Managing Releases::           The release process.
71 * References::                  Mentioning non-free software or documentation.
72 * GNU Free Documentation License::  Copying and sharing this manual.
73 * Index::
74
75 @end menu
76
77 @node Preface
78 @chapter About the GNU Coding Standards
79
80 The GNU Coding Standards were written by Richard Stallman and other GNU
81 Project volunteers.  Their purpose is to make the GNU system clean,
82 consistent, and easy to install.  This document can also be read as a
83 guide to writing portable, robust and reliable programs.  It focuses on
84 programs written in C, but many of the rules and principles are useful
85 even if you write in another programming language.  The rules often
86 state reasons for writing in a certain way.
87
88 @cindex where to obtain @code{standards.texi}
89 @cindex downloading this manual
90 If you did not obtain this file directly from the GNU project and
91 recently, please check for a newer version.  You can get the GNU
92 Coding Standards from the GNU web server in many
93 different formats, including the Texinfo source, PDF, HTML, DVI, plain
94 text, and more, at: @uref{http://www.gnu.org/prep/standards/}.
95
96 If you are maintaining an official GNU package, in addition to this
97 document, please read and follow the GNU maintainer information
98 (@pxref{Top, , Contents, maintain, Information for Maintainers of GNU
99 Software}).
100
101 @cindex @code{gnustandards-commit@@gnu.org} mailing list
102 If you want to receive diffs for every change to these GNU documents,
103 join the mailing list @code{gnustandards-commit@@gnu.org}, via the web
104 interface at
105 @url{http://lists.gnu.org/mailman/listinfo/gnustandards-commit}.
106 Archives are also available there.
107
108 @cindex @code{bug-standards@@gnu.org} email address
109 @cindex Savannah repository for gnustandards
110 @cindex gnustandards project repository
111 Please send corrections or suggestions for this document to
112 @email{bug-standards@@gnu.org}.  If you make a suggestion, please
113 include a suggested new wording for it, to help us consider the
114 suggestion efficiently.  We prefer a context diff to the Texinfo
115 source, but if that's difficult for you, you can make a context diff
116 for some other version of this document, or propose it in any way that
117 makes it clear.  The source repository for this document can be found
118 at @url{http://savannah.gnu.org/projects/gnustandards}.
119
120 These standards cover the minimum of what is important when writing a
121 GNU package.  Likely, the need for additional standards will come up.
122 Sometimes, you might suggest that such standards be added to this
123 document.  If you think your standards would be generally useful, please
124 do suggest them.
125
126 You should also set standards for your package on many questions not
127 addressed or not firmly specified here.  The most important point is to
128 be self-consistent---try to stick to the conventions you pick, and try
129 to document them as much as possible.  That way, your program will be
130 more maintainable by others.
131
132 The GNU Hello program serves as an example of how to follow the GNU
133 coding standards for a trivial program.
134 @uref{http://www.gnu.org/software/hello/hello.html}.
135
136 This release of the GNU Coding Standards was last updated
137 @value{lastupdate}.
138
139
140 @node Legal Issues
141 @chapter Keeping Free Software Free
142 @cindex legal aspects
143
144 This chapter discusses how you can make sure that GNU software
145 avoids legal difficulties, and other related issues.
146
147 @menu
148 * Reading Non-Free Code::       Referring to proprietary programs.
149 * Contributions::               Accepting contributions.
150 * Trademarks::                  How we deal with trademark issues.
151 @end menu
152
153 @node Reading Non-Free Code
154 @section Referring to Proprietary Programs
155 @cindex proprietary programs
156 @cindex avoiding proprietary code
157
158 Don't in any circumstances refer to Unix source code for or during
159 your work on GNU!  (Or to any other proprietary programs.)
160
161 If you have a vague recollection of the internals of a Unix program,
162 this does not absolutely mean you can't write an imitation of it, but
163 do try to organize the imitation internally along different lines,
164 because this is likely to make the details of the Unix version
165 irrelevant and dissimilar to your results.
166
167 For example, Unix utilities were generally optimized to minimize
168 memory use; if you go for speed instead, your program will be very
169 different.  You could keep the entire input file in memory and scan it
170 there instead of using stdio.  Use a smarter algorithm discovered more
171 recently than the Unix program.  Eliminate use of temporary files.  Do
172 it in one pass instead of two (we did this in the assembler).
173
174 Or, on the contrary, emphasize simplicity instead of speed.  For some
175 applications, the speed of today's computers makes simpler algorithms
176 adequate.
177
178 Or go for generality.  For example, Unix programs often have static
179 tables or fixed-size strings, which make for arbitrary limits; use
180 dynamic allocation instead.  Make sure your program handles NULs and
181 other funny characters in the input files.  Add a programming language
182 for extensibility and write part of the program in that language.
183
184 Or turn some parts of the program into independently usable libraries.
185 Or use a simple garbage collector instead of tracking precisely when
186 to free memory, or use a new GNU facility such as obstacks.
187
188
189 @node Contributions
190 @section Accepting Contributions
191 @cindex legal papers
192 @cindex accepting contributions
193
194 If the program you are working on is copyrighted by the Free Software
195 Foundation, then when someone else sends you a piece of code to add to
196 the program, we need legal papers to use it---just as we asked you to
197 sign papers initially.  @emph{Each} person who makes a nontrivial
198 contribution to a program must sign some sort of legal papers in order
199 for us to have clear title to the program; the main author alone is not
200 enough.
201
202 So, before adding in any contributions from other people, please tell
203 us, so we can arrange to get the papers.  Then wait until we tell you
204 that we have received the signed papers, before you actually use the
205 contribution.
206
207 This applies both before you release the program and afterward.  If
208 you receive diffs to fix a bug, and they make significant changes, we
209 need legal papers for that change.
210
211 This also applies to comments and documentation files.  For copyright
212 law, comments and code are just text.  Copyright applies to all kinds of
213 text, so we need legal papers for all kinds.
214
215 We know it is frustrating to ask for legal papers; it's frustrating for
216 us as well.  But if you don't wait, you are going out on a limb---for
217 example, what if the contributor's employer won't sign a disclaimer?
218 You might have to take that code out again!
219
220 You don't need papers for changes of a few lines here or there, since
221 they are not significant for copyright purposes.  Also, you don't need
222 papers if all you get from the suggestion is some ideas, not actual code
223 which you use.  For example, if someone sent you one implementation, but
224 you write a different implementation of the same idea, you don't need to
225 get papers.
226
227 The very worst thing is if you forget to tell us about the other
228 contributor.  We could be very embarrassed in court some day as a
229 result.
230
231 We have more detailed advice for maintainers of GNU packages.  If you
232 have reached the stage of maintaining a GNU program (whether released
233 or not), please take a look: @pxref{Legal Matters,,, maintain,
234 Information for GNU Maintainers}.
235
236
237 @node Trademarks
238 @section Trademarks
239 @cindex trademarks
240
241 Please do not include any trademark acknowledgements in GNU software
242 packages or documentation.
243
244 Trademark acknowledgements are the statements that such-and-such is a
245 trademark of so-and-so.  The GNU Project has no objection to the basic
246 idea of trademarks, but these acknowledgements feel like kowtowing,
247 and there is no legal requirement for them, so we don't use them.
248
249 What is legally required, as regards other people's trademarks, is to
250 avoid using them in ways which a reader might reasonably understand as
251 naming or labeling our own programs or activities.  For example, since
252 ``Objective C'' is (or at least was) a trademark, we made sure to say
253 that we provide a ``compiler for the Objective C language'' rather
254 than an ``Objective C compiler''.  The latter would have been meant as
255 a shorter way of saying the former, but it does not explicitly state
256 the relationship, so it could be misinterpreted as using ``Objective
257 C'' as a label for the compiler rather than for the language.
258
259 Please don't use ``win'' as an abbreviation for Microsoft Windows in
260 GNU software or documentation.  In hacker terminology, calling
261 something a ``win'' is a form of praise.  If you wish to praise
262 Microsoft Windows when speaking on your own, by all means do so, but
263 not in GNU software.  Usually we write the name ``Windows'' in full,
264 but when brevity is very important (as in file names and sometimes
265 symbol names), we abbreviate it to ``w''.  For instance, the files and
266 functions in Emacs that deal with Windows start with @samp{w32}.
267
268 @node Design Advice
269 @chapter General Program Design
270 @cindex program design
271
272 This chapter discusses some of the issues you should take into
273 account when designing your program.
274
275 @c                         Standard or ANSI C
276 @c
277 @c In 1989 the American National Standards Institute (ANSI) standardized
278 @c C   as  standard  X3.159-1989.    In  December   of  that   year  the
279 @c International Standards Organization ISO  adopted the ANSI C standard
280 @c making  minor changes.   In 1990  ANSI then  re-adopted  ISO standard
281 @c C. This version of C is known as either ANSI C or Standard C.
282
283 @c A major revision of the C Standard appeared in 1999.
284
285 @menu
286 * Source Language::             Which languages to use.
287 * Compatibility::               Compatibility with other implementations.
288 * Using Extensions::            Using non-standard features.
289 * Standard C::                  Using standard C features.
290 * Conditional Compilation::     Compiling code only if a conditional is true.
291 @end menu
292
293 @node Source Language
294 @section Which Languages to Use
295 @cindex programming languages
296
297 When you want to use a language that gets compiled and runs at high
298 speed, the best language to use is C.  Using another language is like
299 using a non-standard feature: it will cause trouble for users.  Even if
300 GCC supports the other language, users may find it inconvenient to have
301 to install the compiler for that other language in order to build your
302 program.  For example, if you write your program in C++, people will
303 have to install the GNU C++ compiler in order to compile your program.
304
305 C has one other advantage over C++ and other compiled languages: more
306 people know C, so more people will find it easy to read and modify the
307 program if it is written in C.
308
309 So in general it is much better to use C, rather than the
310 comparable alternatives.
311
312 But there are two exceptions to that conclusion:
313
314 @itemize @bullet
315 @item
316 It is no problem to use another language to write a tool specifically
317 intended for use with that language.  That is because the only people
318 who want to build the tool will be those who have installed the other
319 language anyway.
320
321 @item
322 If an application is of interest only to a narrow part of the community,
323 then the question of which language it is written in has less effect on
324 other people, so you may as well please yourself.
325 @end itemize
326
327 Many programs are designed to be extensible: they include an interpreter
328 for a language that is higher level than C.  Often much of the program
329 is written in that language, too.  The Emacs editor pioneered this
330 technique.
331
332 @cindex Guile
333 @cindex GNOME and Guile
334 The standard extensibility interpreter for GNU software is Guile
335 (@uref{http://www.gnu.org/@/software/@/guile/}), which implements the
336 language Scheme (an especially clean and simple dialect of Lisp).
337 Guile also includes bindings for GTK+/GNOME, making it practical to
338 write modern GUI functionality within Guile.  We don't reject programs
339 written in other ``scripting languages'' such as Perl and Python, but
340 using Guile is very important for the overall consistency of the GNU
341 system.
342
343
344 @node Compatibility
345 @section Compatibility with Other Implementations
346 @cindex compatibility with C and @sc{posix} standards
347 @cindex @sc{posix} compatibility
348
349 With occasional exceptions, utility programs and libraries for GNU
350 should be upward compatible with those in Berkeley Unix, and upward
351 compatible with Standard C if Standard C specifies their
352 behavior, and upward compatible with @sc{posix} if @sc{posix} specifies
353 their behavior.
354
355 When these standards conflict, it is useful to offer compatibility
356 modes for each of them.
357
358 @cindex options for compatibility
359 Standard C and @sc{posix} prohibit many kinds of extensions.  Feel
360 free to make the extensions anyway, and include a @samp{--ansi},
361 @samp{--posix}, or @samp{--compatible} option to turn them off.
362 However, if the extension has a significant chance of breaking any real
363 programs or scripts, then it is not really upward compatible.  So you
364 should try to redesign its interface to make it upward compatible.
365
366 @cindex @code{POSIXLY_CORRECT}, environment variable
367 Many GNU programs suppress extensions that conflict with @sc{posix} if the
368 environment variable @code{POSIXLY_CORRECT} is defined (even if it is
369 defined with a null value).  Please make your program recognize this
370 variable if appropriate.
371
372 When a feature is used only by users (not by programs or command
373 files), and it is done poorly in Unix, feel free to replace it
374 completely with something totally different and better.  (For example,
375 @code{vi} is replaced with Emacs.)  But it is nice to offer a compatible
376 feature as well.  (There is a free @code{vi} clone, so we offer it.)
377
378 Additional useful features are welcome regardless of whether
379 there is any precedent for them.
380
381 @node Using Extensions
382 @section Using Non-standard Features
383 @cindex non-standard extensions
384
385 Many GNU facilities that already exist support a number of convenient
386 extensions over the comparable Unix facilities.  Whether to use these
387 extensions in implementing your program is a difficult question.
388
389 On the one hand, using the extensions can make a cleaner program.
390 On the other hand, people will not be able to build the program
391 unless the other GNU tools are available.  This might cause the
392 program to work on fewer kinds of machines.
393
394 With some extensions, it might be easy to provide both alternatives.
395 For example, you can define functions with a ``keyword'' @code{INLINE}
396 and define that as a macro to expand into either @code{inline} or
397 nothing, depending on the compiler.
398
399 In general, perhaps it is best not to use the extensions if you can
400 straightforwardly do without them, but to use the extensions if they
401 are a big improvement.
402
403 An exception to this rule are the large, established programs (such as
404 Emacs) which run on a great variety of systems.  Using GNU extensions in
405 such programs would make many users unhappy, so we don't do that.
406
407 Another exception is for programs that are used as part of compilation:
408 anything that must be compiled with other compilers in order to
409 bootstrap the GNU compilation facilities.  If these require the GNU
410 compiler, then no one can compile them without having them installed
411 already.  That would be extremely troublesome in certain cases.
412
413 @node Standard C
414 @section Standard C and Pre-Standard C
415 @cindex @sc{ansi} C standard
416
417 1989 Standard C is widespread enough now that it is ok to use its
418 features in new programs.  There is one exception: do not ever use the
419 ``trigraph'' feature of Standard C.
420
421 1999 Standard C is not widespread yet, so please do not require its
422 features in programs.  It is ok to use its features if they are present.
423
424 However, it is easy to support pre-standard compilers in most programs,
425 so if you know how to do that, feel free.  If a program you are
426 maintaining has such support, you should try to keep it working.
427
428 @cindex function prototypes
429 To support pre-standard C, instead of writing function definitions in
430 standard prototype form,
431
432 @example
433 int
434 foo (int x, int y)
435 @dots{}
436 @end example
437
438 @noindent
439 write the definition in pre-standard style like this,
440
441 @example
442 int
443 foo (x, y)
444      int x, y;
445 @dots{}
446 @end example
447
448 @noindent
449 and use a separate declaration to specify the argument prototype:
450
451 @example
452 int foo (int, int);
453 @end example
454
455 You need such a declaration anyway, in a header file, to get the benefit
456 of prototypes in all the files where the function is called.  And once
457 you have the declaration, you normally lose nothing by writing the
458 function definition in the pre-standard style.
459
460 This technique does not work for integer types narrower than @code{int}.
461 If you think of an argument as being of a type narrower than @code{int},
462 declare it as @code{int} instead.
463
464 There are a few special cases where this technique is hard to use.  For
465 example, if a function argument needs to hold the system type
466 @code{dev_t}, you run into trouble, because @code{dev_t} is shorter than
467 @code{int} on some machines; but you cannot use @code{int} instead,
468 because @code{dev_t} is wider than @code{int} on some machines.  There
469 is no type you can safely use on all machines in a non-standard
470 definition.  The only way to support non-standard C and pass such an
471 argument is to check the width of @code{dev_t} using Autoconf and choose
472 the argument type accordingly.  This may not be worth the trouble.
473
474 In order to support pre-standard compilers that do not recognize
475 prototypes, you may want to use a preprocessor macro like this:
476
477 @example
478 /* Declare the prototype for a general external function.  */
479 #if defined (__STDC__) || defined (WINDOWSNT)
480 #define P_(proto) proto
481 #else
482 #define P_(proto) ()
483 #endif
484 @end example
485
486 @node Conditional Compilation
487 @section Conditional Compilation
488
489 When supporting configuration options already known when building your
490 program we prefer using @code{if (... )} over conditional compilation,
491 as in the former case the compiler is able to perform more extensive
492 checking of all possible code paths.
493
494 For example, please write
495
496 @smallexample
497   if (HAS_FOO)
498     ...
499   else
500     ...
501 @end smallexample
502
503 @noindent
504 instead of:
505
506 @smallexample
507   #ifdef HAS_FOO
508     ...
509   #else
510     ...
511   #endif
512 @end smallexample
513
514 A modern compiler such as GCC will generate exactly the same code in
515 both cases, and we have been using similar techniques with good success
516 in several projects.  Of course, the former method assumes that
517 @code{HAS_FOO} is defined as either 0 or 1.
518
519 While this is not a silver bullet solving all portability problems,
520 and is not always appropriate, following this policy would have saved
521 GCC developers many hours, or even days, per year.
522
523 In the case of function-like macros like @code{REVERSIBLE_CC_MODE} in
524 GCC which cannot be simply used in @code{if (...)} statements, there is
525 an easy workaround.  Simply introduce another macro
526 @code{HAS_REVERSIBLE_CC_MODE} as in the following example:
527
528 @smallexample
529   #ifdef REVERSIBLE_CC_MODE
530   #define HAS_REVERSIBLE_CC_MODE 1
531   #else
532   #define HAS_REVERSIBLE_CC_MODE 0
533   #endif
534 @end smallexample
535
536 @node Program Behavior
537 @chapter Program Behavior for All Programs
538
539 This chapter describes conventions for writing robust
540 software.  It also describes general standards for error messages, the
541 command line interface, and how libraries should behave.
542
543 @menu
544 * Non-GNU Standards::           We consider standards such as POSIX;
545                                   we don't "obey" them.
546 * Semantics::                   Writing robust programs.
547 * Libraries::                   Library behavior.
548 * Errors::                      Formatting error messages.
549 * User Interfaces::             Standards about interfaces generally.
550 * Graphical Interfaces::        Standards for graphical interfaces.
551 * Command-Line Interfaces::     Standards for command line interfaces.
552 * Dynamic Plug-In Interfaces::  Standards for dynamic plug-in interfaces.
553 * Option Table::                Table of long options.
554 * OID Allocations::             Table of OID slots for GNU.
555 * Memory Usage::                When and how to care about memory needs.
556 * File Usage::                  Which files to use, and where.
557 @end menu
558
559 @node Non-GNU Standards
560 @section Non-GNU Standards
561
562 The GNU Project regards standards published by other organizations as
563 suggestions, not orders.  We consider those standards, but we do not
564 ``obey'' them.  In developing a GNU program, you should implement
565 an outside standard's specifications when that makes the GNU system
566 better overall in an objective sense.  When it doesn't, you shouldn't.
567
568 In most cases, following published standards is convenient for
569 users---it means that their programs or scripts will work more
570 portably.  For instance, GCC implements nearly all the features of
571 Standard C as specified by that standard.  C program developers would
572 be unhappy if it did not.  And GNU utilities mostly follow
573 specifications of POSIX.2; shell script writers and users would be
574 unhappy if our programs were incompatible.
575
576 But we do not follow either of these specifications rigidly, and there
577 are specific points on which we decided not to follow them, so as to
578 make the GNU system better for users.
579
580 For instance, Standard C says that nearly all extensions to C are
581 prohibited.  How silly!  GCC implements many extensions, some of which
582 were later adopted as part of the standard.  If you want these
583 constructs to give an error message as ``required'' by the standard,
584 you must specify @samp{--pedantic}, which was implemented only so that
585 we can say ``GCC is a 100% implementation of the standard'', not
586 because there is any reason to actually use it.
587
588 POSIX.2 specifies that @samp{df} and @samp{du} must output sizes by
589 default in units of 512 bytes.  What users want is units of 1k, so
590 that is what we do by default.  If you want the ridiculous behavior
591 ``required'' by POSIX, you must set the environment variable
592 @samp{POSIXLY_CORRECT} (which was originally going to be named
593 @samp{POSIX_ME_HARDER}).
594
595 GNU utilities also depart from the letter of the POSIX.2 specification
596 when they support long-named command-line options, and intermixing
597 options with ordinary arguments.  This minor incompatibility with
598 POSIX is never a problem in practice, and it is very useful.
599
600 In particular, don't reject a new feature, or remove an old one,
601 merely because a standard says it is ``forbidden'' or ``deprecated''.
602
603
604 @node Semantics
605 @section Writing Robust Programs
606
607 @cindex arbitrary limits on data
608 Avoid arbitrary limits on the length or number of @emph{any} data
609 structure, including file names, lines, files, and symbols, by allocating
610 all data structures dynamically.  In most Unix utilities, ``long lines
611 are silently truncated''.  This is not acceptable in a GNU utility.
612
613 @cindex @code{NUL} characters
614 @findex libiconv
615 Utilities reading files should not drop NUL characters, or any other
616 nonprinting characters @emph{including those with codes above 0177}.
617 The only sensible exceptions would be utilities specifically intended
618 for interface to certain types of terminals or printers that can't
619 handle those characters.  Whenever possible, try to make programs work
620 properly with sequences of bytes that represent multibyte characters;
621 UTF-8 is the most important.
622
623 @cindex error messages
624 Check every system call for an error return, unless you know you wish
625 to ignore errors.  Include the system error text (from @code{perror},
626 @code{strerror}, or equivalent) in @emph{every} error message
627 resulting from a failing system call, as well as the name of the file
628 if any and the name of the utility.  Just ``cannot open foo.c'' or
629 ``stat failed'' is not sufficient.
630
631 @cindex @code{malloc} return value
632 @cindex memory allocation failure
633 Check every call to @code{malloc} or @code{realloc} to see if it
634 returned zero.  Check @code{realloc} even if you are making the block
635 smaller; in a system that rounds block sizes to a power of 2,
636 @code{realloc} may get a different block if you ask for less space.
637
638 In Unix, @code{realloc} can destroy the storage block if it returns
639 zero.  GNU @code{realloc} does not have this bug: if it fails, the
640 original block is unchanged.  Feel free to assume the bug is fixed.  If
641 you wish to run your program on Unix, and wish to avoid lossage in this
642 case, you can use the GNU @code{malloc}.
643
644 You must expect @code{free} to alter the contents of the block that was
645 freed.  Anything you want to fetch from the block, you must fetch before
646 calling @code{free}.
647
648 If @code{malloc} fails in a noninteractive program, make that a fatal
649 error.  In an interactive program (one that reads commands from the
650 user), it is better to abort the command and return to the command
651 reader loop.  This allows the user to kill other processes to free up
652 virtual memory, and then try the command again.
653
654 @cindex command-line arguments, decoding
655 Use @code{getopt_long} to decode arguments, unless the argument syntax
656 makes this unreasonable.
657
658 When static storage is to be written in during program execution, use
659 explicit C code to initialize it.  Reserve C initialized declarations
660 for data that will not be changed.
661 @c ADR: why?
662
663 Try to avoid low-level interfaces to obscure Unix data structures (such
664 as file directories, utmp, or the layout of kernel memory), since these
665 are less likely to work compatibly.  If you need to find all the files
666 in a directory, use @code{readdir} or some other high-level interface.
667 These are supported compatibly by GNU.
668
669 @cindex signal handling
670 The preferred signal handling facilities are the BSD variant of
671 @code{signal}, and the @sc{posix} @code{sigaction} function; the
672 alternative USG @code{signal} interface is an inferior design.
673
674 Nowadays, using the @sc{posix} signal functions may be the easiest way
675 to make a program portable.  If you use @code{signal}, then on GNU/Linux
676 systems running GNU libc version 1, you should include
677 @file{bsd/signal.h} instead of @file{signal.h}, so as to get BSD
678 behavior.  It is up to you whether to support systems where
679 @code{signal} has only the USG behavior, or give up on them.
680
681 @cindex impossible conditions
682 In error checks that detect ``impossible'' conditions, just abort.
683 There is usually no point in printing any message.  These checks
684 indicate the existence of bugs.  Whoever wants to fix the bugs will have
685 to read the source code and run a debugger.  So explain the problem with
686 comments in the source.  The relevant data will be in variables, which
687 are easy to examine with the debugger, so there is no point moving them
688 elsewhere.
689
690 Do not use a count of errors as the exit status for a program.
691 @emph{That does not work}, because exit status values are limited to 8
692 bits (0 through 255).  A single run of the program might have 256
693 errors; if you try to return 256 as the exit status, the parent process
694 will see 0 as the status, and it will appear that the program succeeded.
695
696 @cindex temporary files
697 @cindex @code{TMPDIR} environment variable
698 If you make temporary files, check the @code{TMPDIR} environment
699 variable; if that variable is defined, use the specified directory
700 instead of @file{/tmp}.
701
702 In addition, be aware that there is a possible security problem when
703 creating temporary files in world-writable directories.  In C, you can
704 avoid this problem by creating temporary files in this manner:
705
706 @example
707 fd = open (filename, O_WRONLY | O_CREAT | O_EXCL, 0600);
708 @end example
709
710 @noindent
711 or by using the @code{mkstemps} function from Gnulib
712 (@pxref{mkstemps,,, gnulib, Gnulib}).
713
714 In bash, use @code{set -C} (long name @code{noclobber}) to avoid this
715 problem.  In addition, the @code{mktemp} utility is a more general
716 solution for creating temporary files from shell scripts
717 (@pxref{mktemp invocation,,, coreutils, GNU Coreutils}).
718
719
720 @node Libraries
721 @section Library Behavior
722 @cindex libraries
723
724 Try to make library functions reentrant.  If they need to do dynamic
725 storage allocation, at least try to avoid any nonreentrancy aside from
726 that of @code{malloc} itself.
727
728 Here are certain name conventions for libraries, to avoid name
729 conflicts.
730
731 Choose a name prefix for the library, more than two characters long.
732 All external function and variable names should start with this
733 prefix.  In addition, there should only be one of these in any given
734 library member.  This usually means putting each one in a separate
735 source file.
736
737 An exception can be made when two external symbols are always used
738 together, so that no reasonable program could use one without the
739 other; then they can both go in the same file.
740
741 External symbols that are not documented entry points for the user
742 should have names beginning with @samp{_}.  The @samp{_} should be
743 followed by the chosen name prefix for the library, to prevent
744 collisions with other libraries.  These can go in the same files with
745 user entry points if you like.
746
747 Static functions and variables can be used as you like and need not
748 fit any naming convention.
749
750 @node Errors
751 @section Formatting Error Messages
752 @cindex formatting error messages
753 @cindex error messages, formatting
754
755 Error messages from compilers should look like this:
756
757 @example
758 @var{sourcefile}:@var{lineno}: @var{message}
759 @end example
760
761 @noindent
762 If you want to mention the column number, use one of these formats:
763
764 @example
765 @var{sourcefile}:@var{lineno}:@var{column}: @var{message}
766 @var{sourcefile}:@var{lineno}.@var{column}: @var{message}
767
768 @end example
769
770 @noindent
771 Line numbers should start from 1 at the beginning of the file, and
772 column numbers should start from 1 at the beginning of the line.
773 (Both of these conventions are chosen for compatibility.)  Calculate
774 column numbers assuming that space and all ASCII printing characters
775 have equal width, and assuming tab stops every 8 columns.  For
776 non-ASCII characters, Unicode character widths should be used when in
777 a UTF-8 locale; GNU libc and GNU gnulib provide suitable
778 @code{wcwidth} functions.
779
780 The error message can also give both the starting and ending positions
781 of the erroneous text.  There are several formats so that you can
782 avoid redundant information such as a duplicate line number.
783 Here are the possible formats:
784
785 @example
786 @var{sourcefile}:@var{line1}.@var{column1}-@var{line2}.@var{column2}: @var{message}
787 @var{sourcefile}:@var{line1}.@var{column1}-@var{column2}: @var{message}
788 @var{sourcefile}:@var{line1}-@var{line2}: @var{message}
789 @end example
790
791 @noindent
792 When an error is spread over several files, you can use this format:
793
794 @example
795 @var{file1}:@var{line1}.@var{column1}-@var{file2}:@var{line2}.@var{column2}: @var{message}
796 @end example
797
798 Error messages from other noninteractive programs should look like this:
799
800 @example
801 @var{program}:@var{sourcefile}:@var{lineno}: @var{message}
802 @end example
803
804 @noindent
805 when there is an appropriate source file, or like this:
806
807 @example
808 @var{program}: @var{message}
809 @end example
810
811 @noindent
812 when there is no relevant source file.
813
814 If you want to mention the column number, use this format:
815
816 @example
817 @var{program}:@var{sourcefile}:@var{lineno}:@var{column}: @var{message}
818 @end example
819
820 In an interactive program (one that is reading commands from a
821 terminal), it is better not to include the program name in an error
822 message.  The place to indicate which program is running is in the
823 prompt or with the screen layout.  (When the same program runs with
824 input from a source other than a terminal, it is not interactive and
825 would do best to print error messages using the noninteractive style.)
826
827 The string @var{message} should not begin with a capital letter when
828 it follows a program name and/or file name, because that isn't the
829 beginning of a sentence.  (The sentence conceptually starts at the
830 beginning of the line.)  Also, it should not end with a period.
831
832 Error messages from interactive programs, and other messages such as
833 usage messages, should start with a capital letter.  But they should not
834 end with a period.
835
836 @node User Interfaces
837 @section Standards for Interfaces Generally
838
839 @cindex program name and its behavior
840 @cindex behavior, dependent on program's name
841 Please don't make the behavior of a utility depend on the name used
842 to invoke it.  It is useful sometimes to make a link to a utility
843 with a different name, and that should not change what it does.
844
845 Instead, use a run time option or a compilation switch or both
846 to select among the alternate behaviors.
847
848 @cindex output device and program's behavior
849 Likewise, please don't make the behavior of the program depend on the
850 type of output device it is used with.  Device independence is an
851 important principle of the system's design; do not compromise it merely
852 to save someone from typing an option now and then.  (Variation in error
853 message syntax when using a terminal is ok, because that is a side issue
854 that people do not depend on.)
855
856 If you think one behavior is most useful when the output is to a
857 terminal, and another is most useful when the output is a file or a
858 pipe, then it is usually best to make the default behavior the one that
859 is useful with output to a terminal, and have an option for the other
860 behavior.
861
862 Compatibility requires certain programs to depend on the type of output
863 device.  It would be disastrous if @code{ls} or @code{sh} did not do so
864 in the way all users expect.  In some of these cases, we supplement the
865 program with a preferred alternate version that does not depend on the
866 output device type.  For example, we provide a @code{dir} program much
867 like @code{ls} except that its default output format is always
868 multi-column format.
869
870
871 @node Graphical Interfaces
872 @section Standards for Graphical Interfaces
873 @cindex graphical user interface
874 @cindex interface styles
875 @cindex user interface styles
876
877 @cindex GTK+
878 When you write a program that provides a graphical user interface,
879 please make it work with the X Window System and the GTK+ toolkit
880 unless the functionality specifically requires some alternative (for
881 example, ``displaying jpeg images while in console mode'').
882
883 In addition, please provide a command-line interface to control the
884 functionality.  (In many cases, the graphical user interface can be a
885 separate program which invokes the command-line program.)  This is
886 so that the same jobs can be done from scripts.
887
888 @cindex CORBA
889 @cindex GNOME
890 @cindex D-bus
891 @cindex keyboard interface
892 @cindex library interface
893 Please also consider providing a D-bus interface for use from other
894 running programs, such as within GNOME.  (GNOME used to use CORBA
895 for this, but that is being phased out.)  In addition, consider
896 providing a library interface (for use from C), and perhaps a
897 keyboard-driven console interface (for use by users from console
898 mode).  Once you are doing the work to provide the functionality and
899 the graphical interface, these won't be much extra work.
900
901
902 @node Command-Line Interfaces
903 @section Standards for Command Line Interfaces
904 @cindex command-line interface
905
906 @findex getopt
907 It is a good idea to follow the @sc{posix} guidelines for the
908 command-line options of a program.  The easiest way to do this is to use
909 @code{getopt} to parse them.  Note that the GNU version of @code{getopt}
910 will normally permit options anywhere among the arguments unless the
911 special argument @samp{--} is used.  This is not what @sc{posix}
912 specifies; it is a GNU extension.
913
914 @cindex long-named options
915 Please define long-named options that are equivalent to the
916 single-letter Unix-style options.  We hope to make GNU more user
917 friendly this way.  This is easy to do with the GNU function
918 @code{getopt_long}.
919
920 One of the advantages of long-named options is that they can be
921 consistent from program to program.  For example, users should be able
922 to expect the ``verbose'' option of any GNU program which has one, to be
923 spelled precisely @samp{--verbose}.  To achieve this uniformity, look at
924 the table of common long-option names when you choose the option names
925 for your program (@pxref{Option Table}).
926
927 It is usually a good idea for file names given as ordinary arguments to
928 be input files only; any output files would be specified using options
929 (preferably @samp{-o} or @samp{--output}).  Even if you allow an output
930 file name as an ordinary argument for compatibility, try to provide an
931 option as another way to specify it.  This will lead to more consistency
932 among GNU utilities, and fewer idiosyncrasies for users to remember.
933
934 @cindex standard command-line options
935 @cindex options, standard command-line
936 @cindex CGI programs, standard options for
937 @cindex PATH_INFO, specifying standard options as
938 All programs should support two standard options: @samp{--version}
939 and @samp{--help}.  CGI programs should accept these as command-line
940 options, and also if given as the @env{PATH_INFO}; for instance,
941 visiting @url{http://example.org/p.cgi/--help} in a browser should
942 output the same information as invoking @samp{p.cgi --help} from the
943 command line.
944
945 @menu
946 * --version::       The standard output for --version.
947 * --help::          The standard output for --help.
948 @end menu
949
950 @node --version
951 @subsection @option{--version}
952
953 @cindex @samp{--version} output
954
955 The standard @code{--version} option should direct the program to
956 print information about its name, version, origin and legal status,
957 all on standard output, and then exit successfully.  Other options and
958 arguments should be ignored once this is seen, and the program should
959 not perform its normal function.
960
961 @cindex canonical name of a program
962 @cindex program's canonical name
963 The first line is meant to be easy for a program to parse; the version
964 number proper starts after the last space.  In addition, it contains
965 the canonical name for this program, in this format:
966
967 @example
968 GNU Emacs 19.30
969 @end example
970
971 @noindent
972 The program's name should be a constant string; @emph{don't} compute it
973 from @code{argv[0]}.  The idea is to state the standard or canonical
974 name for the program, not its file name.  There are other ways to find
975 out the precise file name where a command is found in @code{PATH}.
976
977 If the program is a subsidiary part of a larger package, mention the
978 package name in parentheses, like this:
979
980 @example
981 emacsserver (GNU Emacs) 19.30
982 @end example
983
984 @noindent
985 If the package has a version number which is different from this
986 program's version number, you can mention the package version number
987 just before the close-parenthesis.
988
989 If you @emph{need} to mention the version numbers of libraries which
990 are distributed separately from the package which contains this program,
991 you can do so by printing an additional line of version info for each
992 library you want to mention.  Use the same format for these lines as for
993 the first line.
994
995 Please do not mention all of the libraries that the program uses ``just
996 for completeness''---that would produce a lot of unhelpful clutter.
997 Please mention library version numbers only if you find in practice that
998 they are very important to you in debugging.
999
1000 The following line, after the version number line or lines, should be a
1001 copyright notice.  If more than one copyright notice is called for, put
1002 each on a separate line.
1003
1004 Next should follow a line stating the license, preferably using one of
1005 abbreviations below, and a brief statement that the program is free
1006 software, and that users are free to copy and change it.  Also mention
1007 that there is no warranty, to the extent permitted by law.  See
1008 recommended wording below.
1009
1010 It is ok to finish the output with a list of the major authors of the
1011 program, as a way of giving credit.
1012
1013 Here's an example of output that follows these rules:
1014
1015 @smallexample
1016 GNU hello 2.3
1017 Copyright (C) 2007 Free Software Foundation, Inc.
1018 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
1019 This is free software: you are free to change and redistribute it.
1020 There is NO WARRANTY, to the extent permitted by law.
1021 @end smallexample
1022
1023 You should adapt this to your program, of course, filling in the proper
1024 year, copyright holder, name of program, and the references to
1025 distribution terms, and changing the rest of the wording as necessary.
1026
1027 This copyright notice only needs to mention the most recent year in
1028 which changes were made---there's no need to list the years for previous
1029 versions' changes.  You don't have to mention the name of the program in
1030 these notices, if that is inconvenient, since it appeared in the first
1031 line.  (The rules are different for copyright notices in source files;
1032 @pxref{Copyright Notices,,,maintain,Information for GNU Maintainers}.)
1033
1034 Translations of the above lines must preserve the validity of the
1035 copyright notices (@pxref{Internationalization}).  If the translation's
1036 character set supports it, the @samp{(C)} should be replaced with the
1037 copyright symbol, as follows:
1038
1039 @ifinfo
1040 (the official copyright symbol, which is the letter C in a circle);
1041 @end ifinfo
1042 @ifnotinfo
1043 @copyright{}
1044 @end ifnotinfo
1045
1046 Write the word ``Copyright'' exactly like that, in English.  Do not
1047 translate it into another language.  International treaties recognize
1048 the English word ``Copyright''; translations into other languages do not
1049 have legal significance.
1050
1051 Finally, here is the table of our suggested license abbreviations.
1052 Any abbreviation can be followed by @samp{v@var{version}[+]}, meaning
1053 that particular version, or later versions with the @samp{+}, as shown
1054 above.
1055
1056 In the case of exceptions for extra permissions with the GPL, we use
1057 @samp{/} for a separator; the version number can follow the license
1058 abbreviation as usual, as in the examples below.
1059
1060 @table @asis
1061 @item GPL
1062 GNU General Public License, @url{http://www.gnu.org/@/licenses/@/gpl.html}.
1063
1064 @item LGPL
1065 GNU Lesser General Public License, @url{http://www.gnu.org/@/licenses/@/lgpl.html}.
1066
1067 @item GPL/Ada
1068 GNU GPL with the exception for Ada.
1069
1070 @item Apache
1071 The Apache Software Foundation license,
1072 @url{http://www.apache.org/@/licenses}.
1073
1074 @item Artistic
1075 The Artistic license used for Perl, @url{http://www.perlfoundation.org/@/legal}.
1076
1077 @item Expat
1078 The Expat license, @url{http://www.jclark.com/@/xml/@/copying.txt}.
1079
1080 @item MPL
1081 The Mozilla Public License, @url{http://www.mozilla.org/@/MPL/}.
1082
1083 @item OBSD
1084 The original (4-clause) BSD license, incompatible with the GNU GPL
1085 @url{http://www.xfree86.org/@/3.3.6/@/COPYRIGHT2.html#6}.
1086
1087 @item PHP
1088 The license used for PHP, @url{http://www.php.net/@/license/}.
1089
1090 @item public domain
1091 The non-license that is being in the public domain,
1092 @url{http://www.gnu.org/@/licenses/@/license-list.html#PublicDomain}.
1093
1094 @item Python
1095 The license for Python, @url{http://www.python.org/@/2.0.1/@/license.html}.
1096
1097 @item RBSD
1098 The revised (3-clause) BSD, compatible with the GNU GPL,@*
1099 @url{http://www.xfree86.org/@/3.3.6/@/COPYRIGHT2.html#5}.
1100
1101 @item X11
1102 The simple non-copyleft license used for most versions of the X Window
1103 System, @url{http://www.xfree86.org/@/3.3.6/@/COPYRIGHT2.html#3}.
1104
1105 @item Zlib
1106 The license for Zlib, @url{http://www.gzip.org/@/zlib/@/zlib_license.html}.
1107
1108 @end table
1109
1110 More information about these licenses and many more are on the GNU
1111 licensing web pages,
1112 @url{http://www.gnu.org/@/licenses/@/license-list.html}.
1113
1114
1115 @node --help
1116 @subsection @option{--help}
1117
1118 @cindex @samp{--help} output
1119
1120 The standard @code{--help} option should output brief documentation
1121 for how to invoke the program, on standard output, then exit
1122 successfully.  Other options and arguments should be ignored once this
1123 is seen, and the program should not perform its normal function.
1124
1125 @cindex address for bug reports
1126 @cindex bug reports
1127 Near the end of the @samp{--help} option's output, please place lines
1128 giving the email address for bug reports, the package's home page
1129 (normally @indicateurl{http://www.gnu.org/software/@var{pkg}}, and the
1130 general page for help using GNU programs.  The format should be like this:
1131
1132 @example
1133 Report bugs to: @var{mailing-address}
1134 @var{pkg} home page: <http://www.gnu.org/software/@var{pkg}/>
1135 General help using GNU software: <http://www.gnu.org/gethelp/>
1136 @end example
1137
1138 It is ok to mention other appropriate mailing lists and web pages.
1139
1140
1141 @node Dynamic Plug-In Interfaces
1142 @section Standards for Dynamic Plug-in Interfaces
1143 @cindex plug-ins
1144 @cindex dynamic plug-ins
1145
1146 Another aspect of keeping free programs free is encouraging
1147 development of free plug-ins, and discouraging development of
1148 proprietary plug-ins.  Many GNU programs will not have anything like
1149 plug-ins at all, but those that do should follow these
1150 practices.
1151
1152 First, the general plug-in architecture design should closely tie the
1153 plug-in to the original code, such that the plug-in and the base
1154 program are parts of one extended program.  For GCC, for example,
1155 plug-ins receive and modify GCC's internal data structures, and so
1156 clearly form an extended program with the base GCC.
1157
1158 @vindex plugin_is_GPL_compatible
1159 Second, you should require plug-in developers to affirm that their
1160 plug-ins are released under an appropriate license.  This should be
1161 enforced with a simple programmatic check.  For GCC, again for
1162 example, a plug-in must define the global symbol
1163 @code{plugin_is_GPL_compatible}, thus asserting that the plug-in is
1164 released under a GPL-compatible license (@pxref{Plugins,, Plugins,
1165 gccint, GCC Internals}).
1166
1167 By adding this check to your program you are not creating a new legal
1168 requirement.  The GPL itself requires plug-ins to be free software,
1169 licensed compatibly.  As long as you have followed the first rule above
1170 to keep plug-ins closely tied to your original program, the GPL and AGPL
1171 already require those plug-ins to be released under a compatible
1172 license.  The symbol definition in the plug-in---or whatever equivalent
1173 works best in your program---makes it harder for anyone who might
1174 distribute proprietary plug-ins to legally defend themselves.  If a case
1175 about this got to court, we can point to that symbol as evidence that
1176 the plug-in developer understood that the license had this requirement.
1177
1178
1179 @node Option Table
1180 @section Table of Long Options
1181 @cindex long option names
1182 @cindex table of long options
1183
1184 Here is a table of long options used by GNU programs.  It is surely
1185 incomplete, but we aim to list all the options that a new program might
1186 want to be compatible with.  If you use names not already in the table,
1187 please send @email{bug-standards@@gnu.org} a list of them, with their
1188 meanings, so we can update the table.
1189
1190 @c Please leave newlines between items in this table; it's much easier
1191 @c to update when it isn't completely squashed together and unreadable.
1192 @c When there is more than one short option for a long option name, put
1193 @c a semicolon between the lists of the programs that use them, not a
1194 @c period.   --friedman
1195
1196 @table @samp
1197 @item after-date
1198 @samp{-N} in @code{tar}.
1199
1200 @item all
1201 @samp{-a} in @code{du}, @code{ls}, @code{nm}, @code{stty}, @code{uname},
1202 and @code{unexpand}.
1203
1204 @item all-text
1205 @samp{-a} in @code{diff}.
1206
1207 @item almost-all
1208 @samp{-A} in @code{ls}.
1209
1210 @item append
1211 @samp{-a} in @code{etags}, @code{tee}, @code{time};
1212 @samp{-r} in @code{tar}.
1213
1214 @item archive
1215 @samp{-a} in @code{cp}.
1216
1217 @item archive-name
1218 @samp{-n} in @code{shar}.
1219
1220 @item arglength
1221 @samp{-l} in @code{m4}.
1222
1223 @item ascii
1224 @samp{-a} in @code{diff}.
1225
1226 @item assign
1227 @samp{-v} in @code{gawk}.
1228
1229 @item assume-new
1230 @samp{-W} in @code{make}.
1231
1232 @item assume-old
1233 @samp{-o} in @code{make}.
1234
1235 @item auto-check
1236 @samp{-a} in @code{recode}.
1237
1238 @item auto-pager
1239 @samp{-a} in @code{wdiff}.
1240
1241 @item auto-reference
1242 @samp{-A} in @code{ptx}.
1243
1244 @item avoid-wraps
1245 @samp{-n} in @code{wdiff}.
1246
1247 @item background
1248 For server programs, run in the background.
1249
1250 @item backward-search
1251 @samp{-B} in @code{ctags}.
1252
1253 @item basename
1254 @samp{-f} in @code{shar}.
1255
1256 @item batch
1257 Used in GDB.
1258
1259 @item baud
1260 Used in GDB.
1261
1262 @item before
1263 @samp{-b} in @code{tac}.
1264
1265 @item binary
1266 @samp{-b} in @code{cpio} and @code{diff}.
1267
1268 @item bits-per-code
1269 @samp{-b} in @code{shar}.
1270
1271 @item block-size
1272 Used in @code{cpio} and @code{tar}.
1273
1274 @item blocks
1275 @samp{-b} in @code{head} and @code{tail}.
1276
1277 @item break-file
1278 @samp{-b} in @code{ptx}.
1279
1280 @item brief
1281 Used in various programs to make output shorter.
1282
1283 @item bytes
1284 @samp{-c} in @code{head}, @code{split}, and @code{tail}.
1285
1286 @item c@t{++}
1287 @samp{-C} in @code{etags}.
1288
1289 @item catenate
1290 @samp{-A} in @code{tar}.
1291
1292 @item cd
1293 Used in various programs to specify the directory to use.
1294
1295 @item changes
1296 @samp{-c} in @code{chgrp} and @code{chown}.
1297
1298 @item classify
1299 @samp{-F} in @code{ls}.
1300
1301 @item colons
1302 @samp{-c} in @code{recode}.
1303
1304 @item command
1305 @samp{-c} in @code{su};
1306 @samp{-x} in GDB.
1307
1308 @item compare
1309 @samp{-d} in @code{tar}.
1310
1311 @item compat
1312 Used in @code{gawk}.
1313
1314 @item compress
1315 @samp{-Z} in @code{tar} and @code{shar}.
1316
1317 @item concatenate
1318 @samp{-A} in @code{tar}.
1319
1320 @item confirmation
1321 @samp{-w} in @code{tar}.
1322
1323 @item context
1324 Used in @code{diff}.
1325
1326 @item copyleft
1327 @samp{-W copyleft} in @code{gawk}.
1328
1329 @item copyright
1330 @samp{-C} in @code{ptx}, @code{recode}, and @code{wdiff};
1331 @samp{-W copyright} in @code{gawk}.
1332
1333 @item core
1334 Used in GDB.
1335
1336 @item count
1337 @samp{-q} in @code{who}.
1338
1339 @item count-links
1340 @samp{-l} in @code{du}.
1341
1342 @item create
1343 Used in @code{tar} and @code{cpio}.
1344
1345 @item cut-mark
1346 @samp{-c} in @code{shar}.
1347
1348 @item cxref
1349 @samp{-x} in @code{ctags}.
1350
1351 @item date
1352 @samp{-d} in @code{touch}.
1353
1354 @item debug
1355 @samp{-d} in @code{make} and @code{m4};
1356 @samp{-t} in Bison.
1357
1358 @item define
1359 @samp{-D} in @code{m4}.
1360
1361 @item defines
1362 @samp{-d} in Bison and @code{ctags}.
1363
1364 @item delete
1365 @samp{-D} in @code{tar}.
1366
1367 @item dereference
1368 @samp{-L} in @code{chgrp}, @code{chown}, @code{cpio}, @code{du},
1369 @code{ls}, and @code{tar}.
1370
1371 @item dereference-args
1372 @samp{-D} in @code{du}.
1373
1374 @item device
1375 Specify an I/O device (special file name).
1376
1377 @item diacritics
1378 @samp{-d} in @code{recode}.
1379
1380 @item dictionary-order
1381 @samp{-d} in @code{look}.
1382
1383 @item diff
1384 @samp{-d} in @code{tar}.
1385
1386 @item digits
1387 @samp{-n} in @code{csplit}.
1388
1389 @item directory
1390 Specify the directory to use, in various programs.  In @code{ls}, it
1391 means to show directories themselves rather than their contents.  In
1392 @code{rm} and @code{ln}, it means to not treat links to directories
1393 specially.
1394
1395 @item discard-all
1396 @samp{-x} in @code{strip}.
1397
1398 @item discard-locals
1399 @samp{-X} in @code{strip}.
1400
1401 @item dry-run
1402 @samp{-n} in @code{make}.
1403
1404 @item ed
1405 @samp{-e} in @code{diff}.
1406
1407 @item elide-empty-files
1408 @samp{-z} in @code{csplit}.
1409
1410 @item end-delete
1411 @samp{-x} in @code{wdiff}.
1412
1413 @item end-insert
1414 @samp{-z} in @code{wdiff}.
1415
1416 @item entire-new-file
1417 @samp{-N} in @code{diff}.
1418
1419 @item environment-overrides
1420 @samp{-e} in @code{make}.
1421
1422 @item eof
1423 @samp{-e} in @code{xargs}.
1424
1425 @item epoch
1426 Used in GDB.
1427
1428 @item error-limit
1429 Used in @code{makeinfo}.
1430
1431 @item error-output
1432 @samp{-o} in @code{m4}.
1433
1434 @item escape
1435 @samp{-b} in @code{ls}.
1436
1437 @item exclude-from
1438 @samp{-X} in @code{tar}.
1439
1440 @item exec
1441 Used in GDB.
1442
1443 @item exit
1444 @samp{-x} in @code{xargs}.
1445
1446 @item exit-0
1447 @samp{-e} in @code{unshar}.
1448
1449 @item expand-tabs
1450 @samp{-t} in @code{diff}.
1451
1452 @item expression
1453 @samp{-e} in @code{sed}.
1454
1455 @item extern-only
1456 @samp{-g} in @code{nm}.
1457
1458 @item extract
1459 @samp{-i} in @code{cpio};
1460 @samp{-x} in @code{tar}.
1461
1462 @item faces
1463 @samp{-f} in @code{finger}.
1464
1465 @item fast
1466 @samp{-f} in @code{su}.
1467
1468 @item fatal-warnings
1469 @samp{-E} in @code{m4}.
1470
1471 @item file
1472 @samp{-f} in @code{gawk}, @code{info}, @code{make}, @code{mt},
1473 @code{sed}, and @code{tar}.
1474
1475 @item field-separator
1476 @samp{-F} in @code{gawk}.
1477
1478 @item file-prefix
1479 @samp{-b} in Bison.
1480
1481 @item file-type
1482 @samp{-F} in @code{ls}.
1483
1484 @item files-from
1485 @samp{-T} in @code{tar}.
1486
1487 @item fill-column
1488 Used in @code{makeinfo}.
1489
1490 @item flag-truncation
1491 @samp{-F} in @code{ptx}.
1492
1493 @item fixed-output-files
1494 @samp{-y} in Bison.
1495
1496 @item follow
1497 @samp{-f} in @code{tail}.
1498
1499 @item footnote-style
1500 Used in @code{makeinfo}.
1501
1502 @item force
1503 @samp{-f} in @code{cp}, @code{ln}, @code{mv}, and @code{rm}.
1504
1505 @item force-prefix
1506 @samp{-F} in @code{shar}.
1507
1508 @item foreground
1509 For server programs, run in the foreground;
1510 in other words, don't do anything special to run the server
1511 in the background.
1512
1513 @item format
1514 Used in @code{ls}, @code{time}, and @code{ptx}.
1515
1516 @item freeze-state
1517 @samp{-F} in @code{m4}.
1518
1519 @item fullname
1520 Used in GDB.
1521
1522 @item gap-size
1523 @samp{-g} in @code{ptx}.
1524
1525 @item get
1526 @samp{-x} in @code{tar}.
1527
1528 @item graphic
1529 @samp{-i} in @code{ul}.
1530
1531 @item graphics
1532 @samp{-g} in @code{recode}.
1533
1534 @item group
1535 @samp{-g} in @code{install}.
1536
1537 @item gzip
1538 @samp{-z} in @code{tar} and @code{shar}.
1539
1540 @item hashsize
1541 @samp{-H} in @code{m4}.
1542
1543 @item header
1544 @samp{-h} in @code{objdump} and @code{recode}
1545
1546 @item heading
1547 @samp{-H} in @code{who}.
1548
1549 @item help
1550 Used to ask for brief usage information.
1551
1552 @item here-delimiter
1553 @samp{-d} in @code{shar}.
1554
1555 @item hide-control-chars
1556 @samp{-q} in @code{ls}.
1557
1558 @item html
1559 In @code{makeinfo}, output HTML.
1560
1561 @item idle
1562 @samp{-u} in @code{who}.
1563
1564 @item ifdef
1565 @samp{-D} in @code{diff}.
1566
1567 @item ignore
1568 @samp{-I} in @code{ls};
1569 @samp{-x} in @code{recode}.
1570
1571 @item ignore-all-space
1572 @samp{-w} in @code{diff}.
1573
1574 @item ignore-backups
1575 @samp{-B} in @code{ls}.
1576
1577 @item ignore-blank-lines
1578 @samp{-B} in @code{diff}.
1579
1580 @item ignore-case
1581 @samp{-f} in @code{look} and @code{ptx};
1582 @samp{-i} in @code{diff} and @code{wdiff}.
1583
1584 @item ignore-errors
1585 @samp{-i} in @code{make}.
1586
1587 @item ignore-file
1588 @samp{-i} in @code{ptx}.
1589
1590 @item ignore-indentation
1591 @samp{-I} in @code{etags}.
1592
1593 @item ignore-init-file
1594 @samp{-f} in Oleo.
1595
1596 @item ignore-interrupts
1597 @samp{-i} in @code{tee}.
1598
1599 @item ignore-matching-lines
1600 @samp{-I} in @code{diff}.
1601
1602 @item ignore-space-change
1603 @samp{-b} in @code{diff}.
1604
1605 @item ignore-zeros
1606 @samp{-i} in @code{tar}.
1607
1608 @item include
1609 @samp{-i} in @code{etags};
1610 @samp{-I} in @code{m4}.
1611
1612 @item include-dir
1613 @samp{-I} in @code{make}.
1614
1615 @item incremental
1616 @samp{-G} in @code{tar}.
1617
1618 @item info
1619 @samp{-i}, @samp{-l}, and @samp{-m} in Finger.
1620
1621 @item init-file
1622 In some programs, specify the name of the file to read as the user's
1623 init file.
1624
1625 @item initial
1626 @samp{-i} in @code{expand}.
1627
1628 @item initial-tab
1629 @samp{-T} in @code{diff}.
1630
1631 @item inode
1632 @samp{-i} in @code{ls}.
1633
1634 @item interactive
1635 @samp{-i} in @code{cp}, @code{ln}, @code{mv}, @code{rm};
1636 @samp{-e} in @code{m4};
1637 @samp{-p} in @code{xargs};
1638 @samp{-w} in @code{tar}.
1639
1640 @item intermix-type
1641 @samp{-p} in @code{shar}.
1642
1643 @item iso-8601
1644 Used in @code{date}
1645
1646 @item jobs
1647 @samp{-j} in @code{make}.
1648
1649 @item just-print
1650 @samp{-n} in @code{make}.
1651
1652 @item keep-going
1653 @samp{-k} in @code{make}.
1654
1655 @item keep-files
1656 @samp{-k} in @code{csplit}.
1657
1658 @item kilobytes
1659 @samp{-k} in @code{du} and @code{ls}.
1660
1661 @item language
1662 @samp{-l} in @code{etags}.
1663
1664 @item less-mode
1665 @samp{-l} in @code{wdiff}.
1666
1667 @item level-for-gzip
1668 @samp{-g} in @code{shar}.
1669
1670 @item line-bytes
1671 @samp{-C} in @code{split}.
1672
1673 @item lines
1674 Used in @code{split}, @code{head}, and @code{tail}.
1675
1676 @item link
1677 @samp{-l} in @code{cpio}.
1678
1679 @item lint
1680 @itemx lint-old
1681 Used in @code{gawk}.
1682
1683 @item list
1684 @samp{-t} in @code{cpio};
1685 @samp{-l} in @code{recode}.
1686
1687 @item list
1688 @samp{-t} in @code{tar}.
1689
1690 @item literal
1691 @samp{-N} in @code{ls}.
1692
1693 @item load-average
1694 @samp{-l} in @code{make}.
1695
1696 @item login
1697 Used in @code{su}.
1698
1699 @item machine
1700 Used in @code{uname}.
1701
1702 @item macro-name
1703 @samp{-M} in @code{ptx}.
1704
1705 @item mail
1706 @samp{-m} in @code{hello} and @code{uname}.
1707
1708 @item make-directories
1709 @samp{-d} in @code{cpio}.
1710
1711 @item makefile
1712 @samp{-f} in @code{make}.
1713
1714 @item mapped
1715 Used in GDB.
1716
1717 @item max-args
1718 @samp{-n} in @code{xargs}.
1719
1720 @item max-chars
1721 @samp{-n} in @code{xargs}.
1722
1723 @item max-lines
1724 @samp{-l} in @code{xargs}.
1725
1726 @item max-load
1727 @samp{-l} in @code{make}.
1728
1729 @item max-procs
1730 @samp{-P} in @code{xargs}.
1731
1732 @item mesg
1733 @samp{-T} in @code{who}.
1734
1735 @item message
1736 @samp{-T} in @code{who}.
1737
1738 @item minimal
1739 @samp{-d} in @code{diff}.
1740
1741 @item mixed-uuencode
1742 @samp{-M} in @code{shar}.
1743
1744 @item mode
1745 @samp{-m} in @code{install}, @code{mkdir}, and @code{mkfifo}.
1746
1747 @item modification-time
1748 @samp{-m} in @code{tar}.
1749
1750 @item multi-volume
1751 @samp{-M} in @code{tar}.
1752
1753 @item name-prefix
1754 @samp{-a} in Bison.
1755
1756 @item nesting-limit
1757 @samp{-L} in @code{m4}.
1758
1759 @item net-headers
1760 @samp{-a} in @code{shar}.
1761
1762 @item new-file
1763 @samp{-W} in @code{make}.
1764
1765 @item no-builtin-rules
1766 @samp{-r} in @code{make}.
1767
1768 @item no-character-count
1769 @samp{-w} in @code{shar}.
1770
1771 @item no-check-existing
1772 @samp{-x} in @code{shar}.
1773
1774 @item no-common
1775 @samp{-3} in @code{wdiff}.
1776
1777 @item no-create
1778 @samp{-c} in @code{touch}.
1779
1780 @item no-defines
1781 @samp{-D} in @code{etags}.
1782
1783 @item no-deleted
1784 @samp{-1} in @code{wdiff}.
1785
1786 @item no-dereference
1787 @samp{-d} in @code{cp}.
1788
1789 @item no-inserted
1790 @samp{-2} in @code{wdiff}.
1791
1792 @item no-keep-going
1793 @samp{-S} in @code{make}.
1794
1795 @item no-lines
1796 @samp{-l} in Bison.
1797
1798 @item no-piping
1799 @samp{-P} in @code{shar}.
1800
1801 @item no-prof
1802 @samp{-e} in @code{gprof}.
1803
1804 @item no-regex
1805 @samp{-R} in @code{etags}.
1806
1807 @item no-sort
1808 @samp{-p} in @code{nm}.
1809
1810 @item no-splash
1811 Don't print a startup splash screen.
1812
1813 @item no-split
1814 Used in @code{makeinfo}.
1815
1816 @item no-static
1817 @samp{-a} in @code{gprof}.
1818
1819 @item no-time
1820 @samp{-E} in @code{gprof}.
1821
1822 @item no-timestamp
1823 @samp{-m} in @code{shar}.
1824
1825 @item no-validate
1826 Used in @code{makeinfo}.
1827
1828 @item no-wait
1829 Used in @code{emacsclient}.
1830
1831 @item no-warn
1832 Used in various programs to inhibit warnings.
1833
1834 @item node
1835 @samp{-n} in @code{info}.
1836
1837 @item nodename
1838 @samp{-n} in @code{uname}.
1839
1840 @item nonmatching
1841 @samp{-f} in @code{cpio}.
1842
1843 @item nstuff
1844 @samp{-n} in @code{objdump}.
1845
1846 @item null
1847 @samp{-0} in @code{xargs}.
1848
1849 @item number
1850 @samp{-n} in @code{cat}.
1851
1852 @item number-nonblank
1853 @samp{-b} in @code{cat}.
1854
1855 @item numeric-sort
1856 @samp{-n} in @code{nm}.
1857
1858 @item numeric-uid-gid
1859 @samp{-n} in @code{cpio} and @code{ls}.
1860
1861 @item nx
1862 Used in GDB.
1863
1864 @item old-archive
1865 @samp{-o} in @code{tar}.
1866
1867 @item old-file
1868 @samp{-o} in @code{make}.
1869
1870 @item one-file-system
1871 @samp{-l} in @code{tar}, @code{cp}, and @code{du}.
1872
1873 @item only-file
1874 @samp{-o} in @code{ptx}.
1875
1876 @item only-prof
1877 @samp{-f} in @code{gprof}.
1878
1879 @item only-time
1880 @samp{-F} in @code{gprof}.
1881
1882 @item options
1883 @samp{-o} in @code{getopt}, @code{fdlist}, @code{fdmount},
1884 @code{fdmountd}, and @code{fdumount}.
1885
1886 @item output
1887 In various programs, specify the output file name.
1888
1889 @item output-prefix
1890 @samp{-o} in @code{shar}.
1891
1892 @item override
1893 @samp{-o} in @code{rm}.
1894
1895 @item overwrite
1896 @samp{-c} in @code{unshar}.
1897
1898 @item owner
1899 @samp{-o} in @code{install}.
1900
1901 @item paginate
1902 @samp{-l} in @code{diff}.
1903
1904 @item paragraph-indent
1905 Used in @code{makeinfo}.
1906
1907 @item parents
1908 @samp{-p} in @code{mkdir} and @code{rmdir}.
1909
1910 @item pass-all
1911 @samp{-p} in @code{ul}.
1912
1913 @item pass-through
1914 @samp{-p} in @code{cpio}.
1915
1916 @item port
1917 @samp{-P} in @code{finger}.
1918
1919 @item portability
1920 @samp{-c} in @code{cpio} and @code{tar}.
1921
1922 @item posix
1923 Used in @code{gawk}.
1924
1925 @item prefix-builtins
1926 @samp{-P} in @code{m4}.
1927
1928 @item prefix
1929 @samp{-f} in @code{csplit}.
1930
1931 @item preserve
1932 Used in @code{tar} and @code{cp}.
1933
1934 @item preserve-environment
1935 @samp{-p} in @code{su}.
1936
1937 @item preserve-modification-time
1938 @samp{-m} in @code{cpio}.
1939
1940 @item preserve-order
1941 @samp{-s} in @code{tar}.
1942
1943 @item preserve-permissions
1944 @samp{-p} in @code{tar}.
1945
1946 @item print
1947 @samp{-l} in @code{diff}.
1948
1949 @item print-chars
1950 @samp{-L} in @code{cmp}.
1951
1952 @item print-data-base
1953 @samp{-p} in @code{make}.
1954
1955 @item print-directory
1956 @samp{-w} in @code{make}.
1957
1958 @item print-file-name
1959 @samp{-o} in @code{nm}.
1960
1961 @item print-symdefs
1962 @samp{-s} in @code{nm}.
1963
1964 @item printer
1965 @samp{-p} in @code{wdiff}.
1966
1967 @item prompt
1968 @samp{-p} in @code{ed}.
1969
1970 @item proxy
1971 Specify an HTTP proxy.
1972
1973 @item query-user
1974 @samp{-X} in @code{shar}.
1975
1976 @item question
1977 @samp{-q} in @code{make}.
1978
1979 @item quiet
1980 Used in many programs to inhibit the usual output.  Every
1981 program accepting @samp{--quiet} should accept @samp{--silent} as a
1982 synonym.
1983
1984 @item quiet-unshar
1985 @samp{-Q} in @code{shar}
1986
1987 @item quote-name
1988 @samp{-Q} in @code{ls}.
1989
1990 @item rcs
1991 @samp{-n} in @code{diff}.
1992
1993 @item re-interval
1994 Used in @code{gawk}.
1995
1996 @item read-full-blocks
1997 @samp{-B} in @code{tar}.
1998
1999 @item readnow
2000 Used in GDB.
2001
2002 @item recon
2003 @samp{-n} in @code{make}.
2004
2005 @item record-number
2006 @samp{-R} in @code{tar}.
2007
2008 @item recursive
2009 Used in @code{chgrp}, @code{chown}, @code{cp}, @code{ls}, @code{diff},
2010 and @code{rm}.
2011
2012 @item reference
2013 @samp{-r} in @code{touch}.
2014
2015 @item references
2016 @samp{-r} in @code{ptx}.
2017
2018 @item regex
2019 @samp{-r} in @code{tac} and @code{etags}.
2020
2021 @item release
2022 @samp{-r} in @code{uname}.
2023
2024 @item reload-state
2025 @samp{-R} in @code{m4}.
2026
2027 @item relocation
2028 @samp{-r} in @code{objdump}.
2029
2030 @item rename
2031 @samp{-r} in @code{cpio}.
2032
2033 @item replace
2034 @samp{-i} in @code{xargs}.
2035
2036 @item report-identical-files
2037 @samp{-s} in @code{diff}.
2038
2039 @item reset-access-time
2040 @samp{-a} in @code{cpio}.
2041
2042 @item reverse
2043 @samp{-r} in @code{ls} and @code{nm}.
2044
2045 @item reversed-ed
2046 @samp{-f} in @code{diff}.
2047
2048 @item right-side-defs
2049 @samp{-R} in @code{ptx}.
2050
2051 @item same-order
2052 @samp{-s} in @code{tar}.
2053
2054 @item same-permissions
2055 @samp{-p} in @code{tar}.
2056
2057 @item save
2058 @samp{-g} in @code{stty}.
2059
2060 @item se
2061 Used in GDB.
2062
2063 @item sentence-regexp
2064 @samp{-S} in @code{ptx}.
2065
2066 @item separate-dirs
2067 @samp{-S} in @code{du}.
2068
2069 @item separator
2070 @samp{-s} in @code{tac}.
2071
2072 @item sequence
2073 Used by @code{recode} to chose files or pipes for sequencing passes.
2074
2075 @item shell
2076 @samp{-s} in @code{su}.
2077
2078 @item show-all
2079 @samp{-A} in @code{cat}.
2080
2081 @item show-c-function
2082 @samp{-p} in @code{diff}.
2083
2084 @item show-ends
2085 @samp{-E} in @code{cat}.
2086
2087 @item show-function-line
2088 @samp{-F} in @code{diff}.
2089
2090 @item show-tabs
2091 @samp{-T} in @code{cat}.
2092
2093 @item silent
2094 Used in many programs to inhibit the usual output.
2095 Every program accepting
2096 @samp{--silent} should accept @samp{--quiet} as a synonym.
2097
2098 @item size
2099 @samp{-s} in @code{ls}.
2100
2101 @item socket
2102 Specify a file descriptor for a network server to use for its socket,
2103 instead of opening and binding a new socket.  This provides a way to
2104 run, in a non-privileged process, a server that normally needs a
2105 reserved port number.
2106
2107 @item sort
2108 Used in @code{ls}.
2109
2110 @item source
2111 @samp{-W source} in @code{gawk}.
2112
2113 @item sparse
2114 @samp{-S} in @code{tar}.
2115
2116 @item speed-large-files
2117 @samp{-H} in @code{diff}.
2118
2119 @item split-at
2120 @samp{-E} in @code{unshar}.
2121
2122 @item split-size-limit
2123 @samp{-L} in @code{shar}.
2124
2125 @item squeeze-blank
2126 @samp{-s} in @code{cat}.
2127
2128 @item start-delete
2129 @samp{-w} in @code{wdiff}.
2130
2131 @item start-insert
2132 @samp{-y} in @code{wdiff}.
2133
2134 @item starting-file
2135 Used in @code{tar} and @code{diff} to specify which file within
2136 a directory to start processing with.
2137
2138 @item statistics
2139 @samp{-s} in @code{wdiff}.
2140
2141 @item stdin-file-list
2142 @samp{-S} in @code{shar}.
2143
2144 @item stop
2145 @samp{-S} in @code{make}.
2146
2147 @item strict
2148 @samp{-s} in @code{recode}.
2149
2150 @item strip
2151 @samp{-s} in @code{install}.
2152
2153 @item strip-all
2154 @samp{-s} in @code{strip}.
2155
2156 @item strip-debug
2157 @samp{-S} in @code{strip}.
2158
2159 @item submitter
2160 @samp{-s} in @code{shar}.
2161
2162 @item suffix
2163 @samp{-S} in @code{cp}, @code{ln}, @code{mv}.
2164
2165 @item suffix-format
2166 @samp{-b} in @code{csplit}.
2167
2168 @item sum
2169 @samp{-s} in @code{gprof}.
2170
2171 @item summarize
2172 @samp{-s} in @code{du}.
2173
2174 @item symbolic
2175 @samp{-s} in @code{ln}.
2176
2177 @item symbols
2178 Used in GDB and @code{objdump}.
2179
2180 @item synclines
2181 @samp{-s} in @code{m4}.
2182
2183 @item sysname
2184 @samp{-s} in @code{uname}.
2185
2186 @item tabs
2187 @samp{-t} in @code{expand} and @code{unexpand}.
2188
2189 @item tabsize
2190 @samp{-T} in @code{ls}.
2191
2192 @item terminal
2193 @samp{-T} in @code{tput} and @code{ul}.
2194 @samp{-t} in @code{wdiff}.
2195
2196 @item text
2197 @samp{-a} in @code{diff}.
2198
2199 @item text-files
2200 @samp{-T} in @code{shar}.
2201
2202 @item time
2203 Used in @code{ls} and @code{touch}.
2204
2205 @item timeout
2206 Specify how long to wait before giving up on some operation.
2207
2208 @item to-stdout
2209 @samp{-O} in @code{tar}.
2210
2211 @item total
2212 @samp{-c} in @code{du}.
2213
2214 @item touch
2215 @samp{-t} in @code{make}, @code{ranlib}, and @code{recode}.
2216
2217 @item trace
2218 @samp{-t} in @code{m4}.
2219
2220 @item traditional
2221 @samp{-t} in @code{hello};
2222 @samp{-W traditional} in @code{gawk};
2223 @samp{-G} in @code{ed}, @code{m4}, and @code{ptx}.
2224
2225 @item tty
2226 Used in GDB.
2227
2228 @item typedefs
2229 @samp{-t} in @code{ctags}.
2230
2231 @item typedefs-and-c++
2232 @samp{-T} in @code{ctags}.
2233
2234 @item typeset-mode
2235 @samp{-t} in @code{ptx}.
2236
2237 @item uncompress
2238 @samp{-z} in @code{tar}.
2239
2240 @item unconditional
2241 @samp{-u} in @code{cpio}.
2242
2243 @item undefine
2244 @samp{-U} in @code{m4}.
2245
2246 @item undefined-only
2247 @samp{-u} in @code{nm}.
2248
2249 @item update
2250 @samp{-u} in @code{cp}, @code{ctags}, @code{mv}, @code{tar}.
2251
2252 @item usage
2253 Used in @code{gawk}; same as @samp{--help}.
2254
2255 @item uuencode
2256 @samp{-B} in @code{shar}.
2257
2258 @item vanilla-operation
2259 @samp{-V} in @code{shar}.
2260
2261 @item verbose
2262 Print more information about progress.  Many programs support this.
2263
2264 @item verify
2265 @samp{-W} in @code{tar}.
2266
2267 @item version
2268 Print the version number.
2269
2270 @item version-control
2271 @samp{-V} in @code{cp}, @code{ln}, @code{mv}.
2272
2273 @item vgrind
2274 @samp{-v} in @code{ctags}.
2275
2276 @item volume
2277 @samp{-V} in @code{tar}.
2278
2279 @item what-if
2280 @samp{-W} in @code{make}.
2281
2282 @item whole-size-limit
2283 @samp{-l} in @code{shar}.
2284
2285 @item width
2286 @samp{-w} in @code{ls} and @code{ptx}.
2287
2288 @item word-regexp
2289 @samp{-W} in @code{ptx}.
2290
2291 @item writable
2292 @samp{-T} in @code{who}.
2293
2294 @item zeros
2295 @samp{-z} in @code{gprof}.
2296 @end table
2297
2298 @node OID Allocations
2299 @section OID Allocations
2300 @cindex OID allocations for GNU
2301 @cindex SNMP
2302 @cindex LDAP
2303 @cindex X.509
2304
2305 The OID (object identifier) 1.3.6.1.4.1.11591 has been assigned to the
2306 GNU Project (thanks to Werner Koch).  These are used for SNMP, LDAP,
2307 X.509 certificates, and so on.  The web site
2308 @url{http://www.alvestrand.no/objectid} has a (voluntary) listing of
2309 many OID assignments.
2310
2311 If you need a new slot for your GNU package, write
2312 @email{maintainers@@gnu.org}.  Here is a list of arcs currently
2313 assigned:
2314
2315 @example
2316 @include gnu-oids.texi
2317 @end example
2318
2319
2320 @node Memory Usage
2321 @section Memory Usage
2322 @cindex memory usage
2323
2324 If a program typically uses just a few meg of memory, don't bother making any
2325 effort to reduce memory usage.  For example, if it is impractical for
2326 other reasons to operate on files more than a few meg long, it is
2327 reasonable to read entire input files into memory to operate on them.
2328
2329 However, for programs such as @code{cat} or @code{tail}, that can
2330 usefully operate on very large files, it is important to avoid using a
2331 technique that would artificially limit the size of files it can handle.
2332 If a program works by lines and could be applied to arbitrary
2333 user-supplied input files, it should keep only a line in memory, because
2334 this is not very hard and users will want to be able to operate on input
2335 files that are bigger than will fit in memory all at once.
2336
2337 If your program creates complicated data structures, just make them in
2338 memory and give a fatal error if @code{malloc} returns zero.
2339
2340 @pindex valgrind
2341 @cindex memory leak
2342 Memory analysis tools such as @command{valgrind} can be useful, but
2343 don't complicate a program merely to avoid their false alarms.  For
2344 example, if memory is used until just before a process exits, don't
2345 free it simply to silence such a tool.
2346
2347
2348 @node File Usage
2349 @section File Usage
2350 @cindex file usage
2351
2352 Programs should be prepared to operate when @file{/usr} and @file{/etc}
2353 are read-only file systems.  Thus, if the program manages log files,
2354 lock files, backup files, score files, or any other files which are
2355 modified for internal purposes, these files should not be stored in
2356 @file{/usr} or @file{/etc}.
2357
2358 There are two exceptions.  @file{/etc} is used to store system
2359 configuration information; it is reasonable for a program to modify
2360 files in @file{/etc} when its job is to update the system configuration.
2361 Also, if the user explicitly asks to modify one file in a directory, it
2362 is reasonable for the program to store other files in the same
2363 directory.
2364
2365 @node Writing C
2366 @chapter Making The Best Use of C
2367
2368 This chapter provides advice on how best to use the C language
2369 when writing GNU software.
2370
2371 @menu
2372 * Formatting::                  Formatting your source code.
2373 * Comments::                    Commenting your work.
2374 * Syntactic Conventions::       Clean use of C constructs.
2375 * Names::                       Naming variables, functions, and files.
2376 * System Portability::          Portability among different operating systems.
2377 * CPU Portability::             Supporting the range of CPU types.
2378 * System Functions::            Portability and ``standard'' library functions.
2379 * Internationalization::        Techniques for internationalization.
2380 * Character Set::               Use ASCII by default.
2381 * Quote Characters::            Use "..." or '...' in the C locale.
2382 * Mmap::                        How you can safely use @code{mmap}.
2383 @end menu
2384
2385 @node Formatting
2386 @section Formatting Your Source Code
2387 @cindex formatting source code
2388
2389 @cindex open brace
2390 @cindex braces, in C source
2391 It is important to put the open-brace that starts the body of a C
2392 function in column one, so that they will start a defun.  Several
2393 tools look for open-braces in column one to find the beginnings of C
2394 functions.  These tools will not work on code not formatted that way.
2395
2396 Avoid putting open-brace, open-parenthesis or open-bracket in column
2397 one when they are inside a function, so that they won't start a defun.
2398 The open-brace that starts a @code{struct} body can go in column one
2399 if you find it useful to treat that definition as a defun.
2400
2401 It is also important for function definitions to start the name of the
2402 function in column one.  This helps people to search for function
2403 definitions, and may also help certain tools recognize them.  Thus,
2404 using Standard C syntax, the format is this:
2405
2406 @example
2407 static char *
2408 concat (char *s1, char *s2)
2409 @{
2410   @dots{}
2411 @}
2412 @end example
2413
2414 @noindent
2415 or, if you want to use traditional C syntax, format the definition like
2416 this:
2417
2418 @example
2419 static char *
2420 concat (s1, s2)        /* Name starts in column one here */
2421      char *s1, *s2;
2422 @{                     /* Open brace in column one here */
2423   @dots{}
2424 @}
2425 @end example
2426
2427 In Standard C, if the arguments don't fit nicely on one line,
2428 split it like this:
2429
2430 @example
2431 int
2432 lots_of_args (int an_integer, long a_long, short a_short,
2433               double a_double, float a_float)
2434 @dots{}
2435 @end example
2436
2437 The rest of this section gives our recommendations for other aspects of
2438 C formatting style, which is also the default style of the @code{indent}
2439 program in version 1.2 and newer.  It corresponds to the options
2440
2441 @smallexample
2442 -nbad -bap -nbc -bbo -bl -bli2 -bls -ncdb -nce -cp1 -cs -di2
2443 -ndj -nfc1 -nfca -hnl -i2 -ip5 -lp -pcs -psl -nsc -nsob
2444 @end smallexample
2445
2446 We don't think of these recommendations as requirements, because it
2447 causes no problems for users if two different programs have different
2448 formatting styles.
2449
2450 But whatever style you use, please use it consistently, since a mixture
2451 of styles within one program tends to look ugly.  If you are
2452 contributing changes to an existing program, please follow the style of
2453 that program.
2454
2455 For the body of the function, our recommended style looks like this:
2456
2457 @example
2458 if (x < foo (y, z))
2459   haha = bar[4] + 5;
2460 else
2461   @{
2462     while (z)
2463       @{
2464         haha += foo (z, z);
2465         z--;
2466       @}
2467     return ++x + bar ();
2468   @}
2469 @end example
2470
2471 @cindex spaces before open-paren
2472 We find it easier to read a program when it has spaces before the
2473 open-parentheses and after the commas.  Especially after the commas.
2474
2475 When you split an expression into multiple lines, split it
2476 before an operator, not after one.  Here is the right way:
2477
2478 @cindex expressions, splitting
2479 @example
2480 if (foo_this_is_long && bar > win (x, y, z)
2481     && remaining_condition)
2482 @end example
2483
2484 Try to avoid having two operators of different precedence at the same
2485 level of indentation.  For example, don't write this:
2486
2487 @example
2488 mode = (inmode[j] == VOIDmode
2489         || GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])
2490         ? outmode[j] : inmode[j]);
2491 @end example
2492
2493 Instead, use extra parentheses so that the indentation shows the nesting:
2494
2495 @example
2496 mode = ((inmode[j] == VOIDmode
2497          || (GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])))
2498         ? outmode[j] : inmode[j]);
2499 @end example
2500
2501 Insert extra parentheses so that Emacs will indent the code properly.
2502 For example, the following indentation looks nice if you do it by hand,
2503
2504 @example
2505 v = rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
2506     + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000;
2507 @end example
2508
2509 @noindent
2510 but Emacs would alter it.  Adding a set of parentheses produces
2511 something that looks equally nice, and which Emacs will preserve:
2512
2513 @example
2514 v = (rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
2515      + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000);
2516 @end example
2517
2518 Format do-while statements like this:
2519
2520 @example
2521 do
2522   @{
2523     a = foo (a);
2524   @}
2525 while (a > 0);
2526 @end example
2527
2528 @cindex formfeed
2529 @cindex control-L
2530 Please use formfeed characters (control-L) to divide the program into
2531 pages at logical places (but not within a function).  It does not matter
2532 just how long the pages are, since they do not have to fit on a printed
2533 page.  The formfeeds should appear alone on lines by themselves.
2534
2535 @node Comments
2536 @section Commenting Your Work
2537 @cindex commenting
2538
2539 Every program should start with a comment saying briefly what it is for.
2540 Example: @samp{fmt - filter for simple filling of text}.  This comment
2541 should be at the top of the source file containing the @samp{main}
2542 function of the program.
2543
2544 Also, please write a brief comment at the start of each source file,
2545 with the file name and a line or two about the overall purpose of the
2546 file.
2547
2548 Please write the comments in a GNU program in English, because English
2549 is the one language that nearly all programmers in all countries can
2550 read.  If you do not write English well, please write comments in
2551 English as well as you can, then ask other people to help rewrite them.
2552 If you can't write comments in English, please find someone to work with
2553 you and translate your comments into English.
2554
2555 Please put a comment on each function saying what the function does,
2556 what sorts of arguments it gets, and what the possible values of
2557 arguments mean and are used for.  It is not necessary to duplicate in
2558 words the meaning of the C argument declarations, if a C type is being
2559 used in its customary fashion.  If there is anything nonstandard about
2560 its use (such as an argument of type @code{char *} which is really the
2561 address of the second character of a string, not the first), or any
2562 possible values that would not work the way one would expect (such as,
2563 that strings containing newlines are not guaranteed to work), be sure
2564 to say so.
2565
2566 Also explain the significance of the return value, if there is one.
2567
2568 Please put two spaces after the end of a sentence in your comments, so
2569 that the Emacs sentence commands will work.  Also, please write
2570 complete sentences and capitalize the first word.  If a lower-case
2571 identifier comes at the beginning of a sentence, don't capitalize it!
2572 Changing the spelling makes it a different identifier.  If you don't
2573 like starting a sentence with a lower case letter, write the sentence
2574 differently (e.g., ``The identifier lower-case is @dots{}'').
2575
2576 The comment on a function is much clearer if you use the argument
2577 names to speak about the argument values.  The variable name itself
2578 should be lower case, but write it in upper case when you are speaking
2579 about the value rather than the variable itself.  Thus, ``the inode
2580 number NODE_NUM'' rather than ``an inode''.
2581
2582 There is usually no purpose in restating the name of the function in
2583 the comment before it, because the reader can see that for himself.
2584 There might be an exception when the comment is so long that the function
2585 itself would be off the bottom of the screen.
2586
2587 There should be a comment on each static variable as well, like this:
2588
2589 @example
2590 /* Nonzero means truncate lines in the display;
2591    zero means continue them.  */
2592 int truncate_lines;
2593 @end example
2594
2595 @cindex conditionals, comments for
2596 @cindex @code{#endif}, commenting
2597 Every @samp{#endif} should have a comment, except in the case of short
2598 conditionals (just a few lines) that are not nested.  The comment should
2599 state the condition of the conditional that is ending, @emph{including
2600 its sense}.  @samp{#else} should have a comment describing the condition
2601 @emph{and sense} of the code that follows.  For example:
2602
2603 @example
2604 @group
2605 #ifdef foo
2606   @dots{}
2607 #else /* not foo */
2608   @dots{}
2609 #endif /* not foo */
2610 @end group
2611 @group
2612 #ifdef foo
2613   @dots{}
2614 #endif /* foo */
2615 @end group
2616 @end example
2617
2618 @noindent
2619 but, by contrast, write the comments this way for a @samp{#ifndef}:
2620
2621 @example
2622 @group
2623 #ifndef foo
2624   @dots{}
2625 #else /* foo */
2626   @dots{}
2627 #endif /* foo */
2628 @end group
2629 @group
2630 #ifndef foo
2631   @dots{}
2632 #endif /* not foo */
2633 @end group
2634 @end example
2635
2636 @node Syntactic Conventions
2637 @section Clean Use of C Constructs
2638 @cindex syntactic conventions
2639
2640 @cindex implicit @code{int}
2641 @cindex function argument, declaring
2642 Please explicitly declare the types of all objects.  For example, you
2643 should explicitly declare all arguments to functions, and you should
2644 declare functions to return @code{int} rather than omitting the
2645 @code{int}.
2646
2647 @cindex compiler warnings
2648 @cindex @samp{-Wall} compiler option
2649 Some programmers like to use the GCC @samp{-Wall} option, and change the
2650 code whenever it issues a warning.  If you want to do this, then do.
2651 Other programmers prefer not to use @samp{-Wall}, because it gives
2652 warnings for valid and legitimate code which they do not want to change.
2653 If you want to do this, then do.  The compiler should be your servant,
2654 not your master.
2655
2656 @pindex clang
2657 @pindex lint
2658 Don't make the program ugly just to placate static analysis tools such
2659 as @command{lint}, @command{clang}, and GCC with extra warnings
2660 options such as @option{-Wconversion} and @option{-Wundef}.  These
2661 tools can help find bugs and unclear code, but they can also generate
2662 so many false alarms that it hurts readability to silence them with
2663 unnecessary casts, wrappers, and other complications.  For example,
2664 please don't insert casts to @code{void} or calls to do-nothing
2665 functions merely to pacify a lint checker.
2666
2667 Declarations of external functions and functions to appear later in the
2668 source file should all go in one place near the beginning of the file
2669 (somewhere before the first function definition in the file), or else
2670 should go in a header file.  Don't put @code{extern} declarations inside
2671 functions.
2672
2673 @cindex temporary variables
2674 It used to be common practice to use the same local variables (with
2675 names like @code{tem}) over and over for different values within one
2676 function.  Instead of doing this, it is better to declare a separate local
2677 variable for each distinct purpose, and give it a name which is
2678 meaningful.  This not only makes programs easier to understand, it also
2679 facilitates optimization by good compilers.  You can also move the
2680 declaration of each local variable into the smallest scope that includes
2681 all its uses.  This makes the program even cleaner.
2682
2683 Don't use local variables or parameters that shadow global identifiers.
2684 GCC's @samp{-Wshadow} option can detect this problem.
2685
2686 @cindex multiple variables in a line
2687 Don't declare multiple variables in one declaration that spans lines.
2688 Start a new declaration on each line, instead.  For example, instead
2689 of this:
2690
2691 @example
2692 @group
2693 int    foo,
2694        bar;
2695 @end group
2696 @end example
2697
2698 @noindent
2699 write either this:
2700
2701 @example
2702 int foo, bar;
2703 @end example
2704
2705 @noindent
2706 or this:
2707
2708 @example
2709 int foo;
2710 int bar;
2711 @end example
2712
2713 @noindent
2714 (If they are global variables, each should have a comment preceding it
2715 anyway.)
2716
2717 When you have an @code{if}-@code{else} statement nested in another
2718 @code{if} statement, always put braces around the @code{if}-@code{else}.
2719 Thus, never write like this:
2720
2721 @example
2722 if (foo)
2723   if (bar)
2724     win ();
2725   else
2726     lose ();
2727 @end example
2728
2729 @noindent
2730 always like this:
2731
2732 @example
2733 if (foo)
2734   @{
2735     if (bar)
2736       win ();
2737     else
2738       lose ();
2739   @}
2740 @end example
2741
2742 If you have an @code{if} statement nested inside of an @code{else}
2743 statement, either write @code{else if} on one line, like this,
2744
2745 @example
2746 if (foo)
2747   @dots{}
2748 else if (bar)
2749   @dots{}
2750 @end example
2751
2752 @noindent
2753 with its @code{then}-part indented like the preceding @code{then}-part,
2754 or write the nested @code{if} within braces like this:
2755
2756 @example
2757 if (foo)
2758   @dots{}
2759 else
2760   @{
2761     if (bar)
2762       @dots{}
2763   @}
2764 @end example
2765
2766 Don't declare both a structure tag and variables or typedefs in the
2767 same declaration.  Instead, declare the structure tag separately
2768 and then use it to declare the variables or typedefs.
2769
2770 Try to avoid assignments inside @code{if}-conditions (assignments
2771 inside @code{while}-conditions are ok).  For example, don't write
2772 this:
2773
2774 @example
2775 if ((foo = (char *) malloc (sizeof *foo)) == 0)
2776   fatal ("virtual memory exhausted");
2777 @end example
2778
2779 @noindent
2780 instead, write this:
2781
2782 @example
2783 foo = (char *) malloc (sizeof *foo);
2784 if (foo == 0)
2785   fatal ("virtual memory exhausted");
2786 @end example
2787
2788 This example uses zero without a cast as a null pointer constant.
2789 This is perfectly fine, except that a cast is needed when calling a
2790 varargs function or when using @code{sizeof}.
2791
2792 @node Names
2793 @section Naming Variables, Functions, and Files
2794
2795 @cindex names of variables, functions, and files
2796 The names of global variables and functions in a program serve as
2797 comments of a sort.  So don't choose terse names---instead, look for
2798 names that give useful information about the meaning of the variable or
2799 function.  In a GNU program, names should be English, like other
2800 comments.
2801
2802 Local variable names can be shorter, because they are used only within
2803 one context, where (presumably) comments explain their purpose.
2804
2805 Try to limit your use of abbreviations in symbol names.  It is ok to
2806 make a few abbreviations, explain what they mean, and then use them
2807 frequently, but don't use lots of obscure abbreviations.
2808
2809 Please use underscores to separate words in a name, so that the Emacs
2810 word commands can be useful within them.  Stick to lower case; reserve
2811 upper case for macros and @code{enum} constants, and for name-prefixes
2812 that follow a uniform convention.
2813
2814 For example, you should use names like @code{ignore_space_change_flag};
2815 don't use names like @code{iCantReadThis}.
2816
2817 Variables that indicate whether command-line options have been
2818 specified should be named after the meaning of the option, not after
2819 the option-letter.  A comment should state both the exact meaning of
2820 the option and its letter.  For example,
2821
2822 @example
2823 @group
2824 /* Ignore changes in horizontal whitespace (-b).  */
2825 int ignore_space_change_flag;
2826 @end group
2827 @end example
2828
2829 When you want to define names with constant integer values, use
2830 @code{enum} rather than @samp{#define}.  GDB knows about enumeration
2831 constants.
2832
2833 @cindex file-name limitations
2834 @pindex doschk
2835 You might want to make sure that none of the file names would conflict
2836 if the files were loaded onto an MS-DOS file system which shortens the
2837 names.  You can use the program @code{doschk} to test for this.
2838
2839 Some GNU programs were designed to limit themselves to file names of 14
2840 characters or less, to avoid file name conflicts if they are read into
2841 older System V systems.  Please preserve this feature in the existing
2842 GNU programs that have it, but there is no need to do this in new GNU
2843 programs.  @code{doschk} also reports file names longer than 14
2844 characters.
2845
2846
2847 @node System Portability
2848 @section Portability between System Types
2849 @cindex portability, between system types
2850
2851 In the Unix world, ``portability'' refers to porting to different Unix
2852 versions.  For a GNU program, this kind of portability is desirable, but
2853 not paramount.
2854
2855 The primary purpose of GNU software is to run on top of the GNU kernel,
2856 compiled with the GNU C compiler, on various types of @sc{cpu}.  So the
2857 kinds of portability that are absolutely necessary are quite limited.
2858 But it is important to support Linux-based GNU systems, since they
2859 are the form of GNU that is popular.
2860
2861 Beyond that, it is good to support the other free operating systems
2862 (*BSD), and it is nice to support other Unix-like systems if you want
2863 to.  Supporting a variety of Unix-like systems is desirable, although
2864 not paramount.  It is usually not too hard, so you may as well do it.
2865 But you don't have to consider it an obligation, if it does turn out to
2866 be hard.
2867
2868 @pindex autoconf
2869 The easiest way to achieve portability to most Unix-like systems is to
2870 use Autoconf.  It's unlikely that your program needs to know more
2871 information about the host platform than Autoconf can provide, simply
2872 because most of the programs that need such knowledge have already been
2873 written.
2874
2875 Avoid using the format of semi-internal data bases (e.g., directories)
2876 when there is a higher-level alternative (@code{readdir}).
2877
2878 @cindex non-@sc{posix} systems, and portability
2879 As for systems that are not like Unix, such as MSDOS, Windows, VMS, MVS,
2880 and older Macintosh systems, supporting them is often a lot of work.
2881 When that is the case, it is better to spend your time adding features
2882 that will be useful on GNU and GNU/Linux, rather than on supporting
2883 other incompatible systems.
2884
2885 If you do support Windows, please do not abbreviate it as ``win''.  In
2886 hacker terminology, calling something a ``win'' is a form of praise.
2887 You're free to praise Microsoft Windows on your own if you want, but
2888 please don't do this in GNU packages.  Instead of abbreviating
2889 ``Windows'' to ``win'', you can write it in full or abbreviate it to
2890 ``woe'' or ``w''.  In GNU Emacs, for instance, we use @samp{w32} in
2891 file names of Windows-specific files, but the macro for Windows
2892 conditionals is called @code{WINDOWSNT}.
2893
2894 It is a good idea to define the ``feature test macro''
2895 @code{_GNU_SOURCE} when compiling your C files.  When you compile on GNU
2896 or GNU/Linux, this will enable the declarations of GNU library extension
2897 functions, and that will usually give you a compiler error message if
2898 you define the same function names in some other way in your program.
2899 (You don't have to actually @emph{use} these functions, if you prefer
2900 to make the program more portable to other systems.)
2901
2902 But whether or not you use these GNU extensions, you should avoid
2903 using their names for any other meanings.  Doing so would make it hard
2904 to move your code into other GNU programs.
2905
2906 @node CPU Portability
2907 @section Portability between @sc{cpu}s
2908
2909 @cindex data types, and portability
2910 @cindex portability, and data types
2911 Even GNU systems will differ because of differences among @sc{cpu}
2912 types---for example, difference in byte ordering and alignment
2913 requirements.  It is absolutely essential to handle these differences.
2914 However, don't make any effort to cater to the possibility that an
2915 @code{int} will be less than 32 bits.  We don't support 16-bit machines
2916 in GNU.
2917
2918 Similarly, don't make any effort to cater to the possibility that
2919 @code{long} will be smaller than predefined types like @code{size_t}.
2920 For example, the following code is ok:
2921
2922 @example
2923 printf ("size = %lu\n", (unsigned long) sizeof array);
2924 printf ("diff = %ld\n", (long) (pointer2 - pointer1));
2925 @end example
2926
2927 1989 Standard C requires this to work, and we know of only one
2928 counterexample: 64-bit programs on Microsoft Windows.  We will leave
2929 it to those who want to port GNU programs to that environment to
2930 figure out how to do it.
2931
2932 Predefined file-size types like @code{off_t} are an exception: they are
2933 longer than @code{long} on many platforms, so code like the above won't
2934 work with them.  One way to print an @code{off_t} value portably is to
2935 print its digits yourself, one by one.
2936
2937 Don't assume that the address of an @code{int} object is also the
2938 address of its least-significant byte.  This is false on big-endian
2939 machines.  Thus, don't make the following mistake:
2940
2941 @example
2942 int c;
2943 @dots{}
2944 while ((c = getchar ()) != EOF)
2945   write (file_descriptor, &c, 1);
2946 @end example
2947
2948 @noindent Instead, use @code{unsigned char} as follows.  (The @code{unsigned}
2949 is for portability to unusual systems where @code{char} is signed and
2950 where there is integer overflow checking.)
2951
2952 @example
2953 int c;
2954 while ((c = getchar ()) != EOF)
2955   @{
2956     unsigned char u = c;
2957     write (file_descriptor, &u, 1);
2958   @}
2959 @end example
2960
2961 @cindex casting pointers to integers
2962 Avoid casting pointers to integers if you can.  Such casts greatly
2963 reduce portability, and in most programs they are easy to avoid.  In the
2964 cases where casting pointers to integers is essential---such as, a Lisp
2965 interpreter which stores type information as well as an address in one
2966 word---you'll have to make explicit provisions to handle different word
2967 sizes.  You will also need to make provision for systems in which the
2968 normal range of addresses you can get from @code{malloc} starts far away
2969 from zero.
2970
2971
2972 @node System Functions
2973 @section Calling System Functions
2974
2975 @cindex C library functions, and portability
2976 @cindex POSIX functions, and portability
2977 @cindex library functions, and portability
2978 @cindex portability, and library functions
2979
2980 Historically, C implementations differed substantially, and many
2981 systems lacked a full implementation of ANSI/ISO C89.  Nowadays,
2982 however, very few systems lack a C89 compiler and GNU C supports
2983 almost all of C99.  Similarly, most systems implement POSIX.1-1993
2984 libraries and tools, and many have POSIX.1-2001.
2985
2986 Hence, there is little reason to support old C or non-POSIX systems,
2987 and you may want to take advantage of C99 and POSIX-1.2001 to write
2988 clearer, more portable, or faster code.  You should use standard
2989 interfaces where possible; but if GNU extensions make your program
2990 more maintainable, powerful, or otherwise better, don't hesitate to
2991 use them.  In any case, don't make your own declaration of system
2992 functions; that's a recipe for conflict.
2993
2994 Despite the standards, nearly every library function has some sort of
2995 portability issue on some system or another.  Here are some examples:
2996
2997 @table @code
2998 @item open
2999 Names with trailing @code{/}'s are mishandled on many platforms.
3000
3001 @item printf
3002 @code{long double} may be unimplemented; floating values Infinity and
3003 NaN are often mishandled; output for large precisions may be
3004 incorrect.
3005
3006 @item readlink
3007 May return @code{int} instead of @code{ssize_t}.
3008
3009 @item scanf
3010 On Windows, @code{errno} is not set on failure.
3011 @end table
3012
3013 @cindex Gnulib
3014 @uref{http://www.gnu.org/software/gnulib/, Gnulib} is a big help in
3015 this regard.  Gnulib provides implementations of standard interfaces
3016 on many of the systems that lack them, including portable
3017 implementations of enhanced GNU interfaces, thereby making their use
3018 portable, and of POSIX-1.2008 interfaces, some of which are missing
3019 even on up-to-date GNU systems.
3020
3021 @findex xmalloc, in Gnulib
3022 @findex error messages, in Gnulib
3023 @findex data structures, in Gnulib
3024 Gnulib also provides many useful non-standard interfaces; for example,
3025 C implementations of standard data structures (hash tables, binary
3026 trees), error-checking type-safe wrappers for memory allocation
3027 functions (@code{xmalloc}, @code{xrealloc}), and output of error
3028 messages.
3029
3030 Gnulib integrates with GNU Autoconf and Automake to remove much of the
3031 burden of writing portable code from the programmer: Gnulib makes your
3032 configure script automatically determine what features are missing and
3033 use the Gnulib code to supply the missing pieces.
3034
3035 The Gnulib and Autoconf manuals have extensive sections on
3036 portability: @ref{Top,, Introduction, gnulib, Gnulib} and
3037 @pxref{Portable C and C++,,, autoconf, Autoconf}.  Please consult them
3038 for many more details.
3039
3040
3041 @node Internationalization
3042 @section Internationalization
3043 @cindex internationalization
3044
3045 @pindex gettext
3046 GNU has a library called GNU gettext that makes it easy to translate the
3047 messages in a program into various languages.  You should use this
3048 library in every program.  Use English for the messages as they appear
3049 in the program, and let gettext provide the way to translate them into
3050 other languages.
3051
3052 Using GNU gettext involves putting a call to the @code{gettext} macro
3053 around each string that might need translation---like this:
3054
3055 @example
3056 printf (gettext ("Processing file '%s'..."), file);
3057 @end example
3058
3059 @noindent
3060 This permits GNU gettext to replace the string @code{"Processing file
3061 '%s'..."} with a translated version.
3062
3063 Once a program uses gettext, please make a point of writing calls to
3064 @code{gettext} when you add new strings that call for translation.
3065
3066 Using GNU gettext in a package involves specifying a @dfn{text domain
3067 name} for the package.  The text domain name is used to separate the
3068 translations for this package from the translations for other packages.
3069 Normally, the text domain name should be the same as the name of the
3070 package---for example, @samp{coreutils} for the GNU core utilities.
3071
3072 @cindex message text, and internationalization
3073 To enable gettext to work well, avoid writing code that makes
3074 assumptions about the structure of words or sentences.  When you want
3075 the precise text of a sentence to vary depending on the data, use two or
3076 more alternative string constants each containing a complete sentences,
3077 rather than inserting conditionalized words or phrases into a single
3078 sentence framework.
3079
3080 Here is an example of what not to do:
3081
3082 @smallexample
3083 printf ("%s is full", capacity > 5000000 ? "disk" : "floppy disk");
3084 @end smallexample
3085
3086 If you apply gettext to all strings, like this,
3087
3088 @smallexample
3089 printf (gettext ("%s is full"),
3090         capacity > 5000000 ? gettext ("disk") : gettext ("floppy disk"));
3091 @end smallexample
3092
3093 @noindent
3094 the translator will hardly know that "disk" and "floppy disk" are meant to
3095 be substituted in the other string.  Worse, in some languages (like French)
3096 the construction will not work: the translation of the word "full" depends
3097 on the gender of the first part of the sentence; it happens to be not the
3098 same for "disk" as for "floppy disk".
3099
3100 Complete sentences can be translated without problems:
3101
3102 @example
3103 printf (capacity > 5000000 ? gettext ("disk is full")
3104         : gettext ("floppy disk is full"));
3105 @end example
3106
3107 A similar problem appears at the level of sentence structure with this
3108 code:
3109
3110 @example
3111 printf ("#  Implicit rule search has%s been done.\n",
3112         f->tried_implicit ? "" : " not");
3113 @end example
3114
3115 @noindent
3116 Adding @code{gettext} calls to this code cannot give correct results for
3117 all languages, because negation in some languages requires adding words
3118 at more than one place in the sentence.  By contrast, adding
3119 @code{gettext} calls does the job straightforwardly if the code starts
3120 out like this:
3121
3122 @example
3123 printf (f->tried_implicit
3124         ? "#  Implicit rule search has been done.\n",
3125         : "#  Implicit rule search has not been done.\n");
3126 @end example
3127
3128 Another example is this one:
3129
3130 @example
3131 printf ("%d file%s processed", nfiles,
3132         nfiles != 1 ? "s" : "");
3133 @end example
3134
3135 @noindent
3136 The problem with this example is that it assumes that plurals are made
3137 by adding `s'.  If you apply gettext to the format string, like this,
3138
3139 @example
3140 printf (gettext ("%d file%s processed"), nfiles,
3141         nfiles != 1 ? "s" : "");
3142 @end example
3143
3144 @noindent
3145 the message can use different words, but it will still be forced to use
3146 `s' for the plural.  Here is a better way, with gettext being applied to
3147 the two strings independently:
3148
3149 @example
3150 printf ((nfiles != 1 ? gettext ("%d files processed")
3151          : gettext ("%d file processed")),
3152         nfiles);
3153 @end example
3154
3155 @noindent
3156 But this still doesn't work for languages like Polish, which has three
3157 plural forms: one for nfiles == 1, one for nfiles == 2, 3, 4, 22, 23, 24, ...
3158 and one for the rest.  The GNU @code{ngettext} function solves this problem:
3159
3160 @example
3161 printf (ngettext ("%d files processed", "%d file processed", nfiles),
3162         nfiles);
3163 @end example
3164
3165
3166 @node Character Set
3167 @section Character Set
3168 @cindex character set
3169 @cindex encodings
3170 @cindex ASCII characters
3171 @cindex non-ASCII characters
3172
3173 Sticking to the ASCII character set (plain text, 7-bit characters) is
3174 preferred in GNU source code comments, text documents, and other
3175 contexts, unless there is good reason to do something else because of
3176 the application domain.  For example, if source code deals with the
3177 French Revolutionary calendar, it is OK if its literal strings contain
3178 accented characters in month names like ``Flor@'eal''.  Also, it is OK
3179 (but not required) to use non-ASCII characters to represent proper
3180 names of contributors in change logs (@pxref{Change Logs}).
3181
3182 If you need to use non-ASCII characters, you should normally stick
3183 with one encoding, certainly within a single file.  UTF-8 is likely to
3184 be the best choice.
3185
3186
3187 @node Quote Characters
3188 @section Quote Characters
3189 @cindex quote characters
3190 @cindex locale-specific quote characters
3191 @cindex left quote
3192 @cindex right quote
3193 @cindex opening quote
3194 @cindex single quote
3195 @cindex double quote
3196 @cindex grave accent
3197 @set txicodequoteundirected
3198 @set txicodequotebacktick
3199
3200 In the C locale, the output of GNU programs should stick to plain
3201 ASCII for quotation characters in messages to users: preferably 0x22
3202 (@samp{"}) or 0x27 (@samp{'}) for both opening and closing quotes.
3203 Although GNU programs traditionally used 0x60 (@samp{`}) for opening
3204 and 0x27 (@samp{'}) for closing quotes, nowadays quotes @samp{`like
3205 this'} are typically rendered asymmetrically, so quoting @samp{"like
3206 this"} or @samp{'like this'} typically looks better.
3207
3208 It is ok, but not required, for GNU programs to generate
3209 locale-specific quotes in non-C locales.  For example:
3210
3211 @example
3212 printf (gettext ("Processing file '%s'..."), file);
3213 @end example
3214
3215 @noindent
3216 Here, a French translation might cause @code{gettext} to return the
3217 string @code{"Traitement de fichier
3218 @guilsinglleft{}@tie{}%s@tie{}@guilsinglright{}..."}, yielding quotes
3219 more appropriate for a French locale.
3220
3221 Sometimes a program may need to use opening and closing quotes
3222 directly.  By convention, @code{gettext} translates the string
3223 @samp{"`"} to the opening quote and the string @samp{"'"} to the
3224 closing quote, and a program can use these translations.  Generally,
3225 though, it is better to translate quote characters in the context of
3226 longer strings.
3227
3228 <<<<<<< HEAD
3229 Unicode contains the unambiguous quote characters required.  However,
3230 Unicode and UTF-8 are not universally well-supported, either.
3231 =======
3232 If the output of your program is ever likely to be parsed by another
3233 program, it is good to provide an option that makes this parsing
3234 reliable.  For example, you could escape special characters using
3235 conventions from the C language or the Bourne shell.  See for example
3236 the option @option{--quoting-style} of GNU @code{ls}.
3237 >>>>>>> snapshot-start
3238
3239 @clear txicodequoteundirected
3240 @clear txicodequotebacktick
3241
3242
3243 @node Mmap
3244 @section Mmap
3245 @findex mmap
3246
3247 Don't assume that @code{mmap} either works on all files or fails
3248 for all files.  It may work on some files and fail on others.
3249
3250 The proper way to use @code{mmap} is to try it on the specific file for
3251 which you want to use it---and if @code{mmap} doesn't work, fall back on
3252 doing the job in another way using @code{read} and @code{write}.
3253
3254 The reason this precaution is needed is that the GNU kernel (the HURD)
3255 provides a user-extensible file system, in which there can be many
3256 different kinds of ``ordinary files''.  Many of them support
3257 @code{mmap}, but some do not.  It is important to make programs handle
3258 all these kinds of files.
3259
3260
3261 @node Documentation
3262 @chapter Documenting Programs
3263 @cindex documentation
3264
3265 A GNU program should ideally come with full free documentation, adequate
3266 for both reference and tutorial purposes.  If the package can be
3267 programmed or extended, the documentation should cover programming or
3268 extending it, as well as just using it.
3269
3270 @menu
3271 * GNU Manuals::                 Writing proper manuals.
3272 * Doc Strings and Manuals::     Compiling doc strings doesn't make a manual.
3273 * Manual Structure Details::    Specific structure conventions.
3274 * License for Manuals::         Writing the distribution terms for a manual.
3275 * Manual Credits::              Giving credit to documentation contributors.
3276 * Printed Manuals::             Mentioning the printed manual.
3277 * NEWS File::                   NEWS files supplement manuals.
3278 * Change Logs::                 Recording changes.
3279 * Man Pages::                   Man pages are secondary.
3280 * Reading other Manuals::       How far you can go in learning
3281                                 from other manuals.
3282 @end menu
3283
3284 @node GNU Manuals
3285 @section GNU Manuals
3286
3287 The preferred document format for the GNU system is the Texinfo
3288 formatting language.  Every GNU package should (ideally) have
3289 documentation in Texinfo both for reference and for learners.  Texinfo
3290 makes it possible to produce a good quality formatted book, using
3291 @TeX{}, and to generate an Info file.  It is also possible to generate
3292 HTML output from Texinfo source.  See the Texinfo manual, either the
3293 hardcopy, or the on-line version available through @code{info} or the
3294 Emacs Info subsystem (@kbd{C-h i}).
3295
3296 Nowadays some other formats such as Docbook and Sgmltexi can be
3297 converted automatically into Texinfo.  It is ok to produce the Texinfo
3298 documentation by conversion this way, as long as it gives good results.
3299
3300 Make sure your manual is clear to a reader who knows nothing about the
3301 topic and reads it straight through.  This means covering basic topics
3302 at the beginning, and advanced topics only later.  This also means
3303 defining every specialized term when it is first used.
3304
3305 Programmers tend to carry over the structure of the program as the
3306 structure for its documentation.  But this structure is not
3307 necessarily good for explaining how to use the program; it may be
3308 irrelevant and confusing for a user.
3309
3310 Instead, the right way to structure documentation is according to the
3311 concepts and questions that a user will have in mind when reading it.
3312 This principle applies at every level, from the lowest (ordering
3313 sentences in a paragraph) to the highest (ordering of chapter topics
3314 within the manual).  Sometimes this structure of ideas matches the
3315 structure of the implementation of the software being documented---but
3316 often they are different.  An important part of learning to write good
3317 documentation is to learn to notice when you have unthinkingly
3318 structured the documentation like the implementation, stop yourself,
3319 and look for better alternatives.
3320
3321 For example, each program in the GNU system probably ought to be
3322 documented in one manual; but this does not mean each program should
3323 have its own manual.  That would be following the structure of the
3324 implementation, rather than the structure that helps the user
3325 understand.
3326
3327 Instead, each manual should cover a coherent @emph{topic}.  For example,
3328 instead of a manual for @code{diff} and a manual for @code{diff3}, we
3329 have one manual for ``comparison of files'' which covers both of those
3330 programs, as well as @code{cmp}.  By documenting these programs
3331 together, we can make the whole subject clearer.
3332
3333 The manual which discusses a program should certainly document all of
3334 the program's command-line options and all of its commands.  It should
3335 give examples of their use.  But don't organize the manual as a list
3336 of features.  Instead, organize it logically, by subtopics.  Address
3337 the questions that a user will ask when thinking about the job that
3338 the program does.  Don't just tell the reader what each feature can
3339 do---say what jobs it is good for, and show how to use it for those
3340 jobs.  Explain what is recommended usage, and what kinds of usage
3341 users should avoid.
3342
3343 In general, a GNU manual should serve both as tutorial and reference.
3344 It should be set up for convenient access to each topic through Info,
3345 and for reading straight through (appendixes aside).  A GNU manual
3346 should give a good introduction to a beginner reading through from the
3347 start, and should also provide all the details that hackers want.
3348 The Bison manual is a good example of this---please take a look at it
3349 to see what we mean.
3350
3351 That is not as hard as it first sounds.  Arrange each chapter as a
3352 logical breakdown of its topic, but order the sections, and write their
3353 text, so that reading the chapter straight through makes sense.  Do
3354 likewise when structuring the book into chapters, and when structuring a
3355 section into paragraphs.  The watchword is, @emph{at each point, address
3356 the most fundamental and important issue raised by the preceding text.}
3357
3358 If necessary, add extra chapters at the beginning of the manual which
3359 are purely tutorial and cover the basics of the subject.  These provide
3360 the framework for a beginner to understand the rest of the manual.  The
3361 Bison manual provides a good example of how to do this.
3362
3363 To serve as a reference, a manual should have an Index that list all the
3364 functions, variables, options, and important concepts that are part of
3365 the program.  One combined Index should do for a short manual, but
3366 sometimes for a complex package it is better to use multiple indices.
3367 The Texinfo manual includes advice on preparing good index entries, see
3368 @ref{Index Entries, , Making Index Entries, texinfo, GNU Texinfo}, and
3369 see @ref{Indexing Commands, , Defining the Entries of an
3370 Index, texinfo, GNU Texinfo}.
3371
3372 Don't use Unix man pages as a model for how to write GNU documentation;
3373 most of them are terse, badly structured, and give inadequate
3374 explanation of the underlying concepts.  (There are, of course, some
3375 exceptions.)  Also, Unix man pages use a particular format which is
3376 different from what we use in GNU manuals.
3377
3378 Please include an email address in the manual for where to report
3379 bugs @emph{in the text of the manual}.
3380
3381 Please do not use the term ``pathname'' that is used in Unix
3382 documentation; use ``file name'' (two words) instead.  We use the term
3383 ``path'' only for search paths, which are lists of directory names.
3384
3385 Please do not use the term ``illegal'' to refer to erroneous input to
3386 a computer program.  Please use ``invalid'' for this, and reserve the
3387 term ``illegal'' for activities prohibited by law.
3388
3389 Please do not write @samp{()} after a function name just to indicate
3390 it is a function.  @code{foo ()} is not a function, it is a function
3391 call with no arguments.
3392
3393 @node Doc Strings and Manuals
3394 @section Doc Strings and Manuals
3395
3396 Some programming systems, such as Emacs, provide a documentation string
3397 for each function, command or variable.  You may be tempted to write a
3398 reference manual by compiling the documentation strings and writing a
3399 little additional text to go around them---but you must not do it.  That
3400 approach is a fundamental mistake.  The text of well-written
3401 documentation strings will be entirely wrong for a manual.
3402
3403 A documentation string needs to stand alone---when it appears on the
3404 screen, there will be no other text to introduce or explain it.
3405 Meanwhile, it can be rather informal in style.
3406
3407 The text describing a function or variable in a manual must not stand
3408 alone; it appears in the context of a section or subsection.  Other text
3409 at the beginning of the section should explain some of the concepts, and
3410 should often make some general points that apply to several functions or
3411 variables.  The previous descriptions of functions and variables in the
3412 section will also have given information about the topic.  A description
3413 written to stand alone would repeat some of that information; this
3414 redundancy looks bad.  Meanwhile, the informality that is acceptable in
3415 a documentation string is totally unacceptable in a manual.
3416
3417 The only good way to use documentation strings in writing a good manual
3418 is to use them as a source of information for writing good text.
3419
3420 @node Manual Structure Details
3421 @section Manual Structure Details
3422 @cindex manual structure
3423
3424 The title page of the manual should state the version of the programs or
3425 packages documented in the manual.  The Top node of the manual should
3426 also contain this information.  If the manual is changing more
3427 frequently than or independent of the program, also state a version
3428 number for the manual in both of these places.
3429
3430 Each program documented in the manual should have a node named
3431 @samp{@var{program} Invocation} or @samp{Invoking @var{program}}.  This
3432 node (together with its subnodes, if any) should describe the program's
3433 command line arguments and how to run it (the sort of information people
3434 would look for in a man page).  Start with an @samp{@@example}
3435 containing a template for all the options and arguments that the program
3436 uses.
3437
3438 Alternatively, put a menu item in some menu whose item name fits one of
3439 the above patterns.  This identifies the node which that item points to
3440 as the node for this purpose, regardless of the node's actual name.
3441
3442 The @samp{--usage} feature of the Info reader looks for such a node
3443 or menu item in order to find the relevant text, so it is essential
3444 for every Texinfo file to have one.
3445
3446 If one manual describes several programs, it should have such a node for
3447 each program described in the manual.
3448
3449 @node License for Manuals
3450 @section License for Manuals
3451 @cindex license for manuals
3452
3453 Please use the GNU Free Documentation License for all GNU manuals that
3454 are more than a few pages long.  Likewise for a collection of short
3455 documents---you only need one copy of the GNU FDL for the whole
3456 collection.  For a single short document, you can use a very permissive
3457 non-copyleft license, to avoid taking up space with a long license.
3458
3459 See @uref{http://www.gnu.org/copyleft/fdl-howto.html} for more explanation
3460 of how to employ the GFDL.
3461
3462 Note that it is not obligatory to include a copy of the GNU GPL or GNU
3463 LGPL in a manual whose license is neither the GPL nor the LGPL.  It can
3464 be a good idea to include the program's license in a large manual; in a
3465 short manual, whose size would be increased considerably by including
3466 the program's license, it is probably better not to include it.
3467
3468 @node Manual Credits
3469 @section Manual Credits
3470 @cindex credits for manuals
3471
3472 Please credit the principal human writers of the manual as the authors,
3473 on the title page of the manual.  If a company sponsored the work, thank
3474 the company in a suitable place in the manual, but do not cite the
3475 company as an author.
3476
3477 @node Printed Manuals
3478 @section Printed Manuals
3479
3480 The FSF publishes some GNU manuals in printed form.  To encourage sales
3481 of these manuals, the on-line versions of the manual should mention at
3482 the very start that the printed manual is available and should point at
3483 information for getting it---for instance, with a link to the page
3484 @url{http://www.gnu.org/order/order.html}.  This should not be included
3485 in the printed manual, though, because there it is redundant.
3486
3487 It is also useful to explain in the on-line forms of the manual how the
3488 user can print out the manual from the sources.
3489
3490 @node NEWS File
3491 @section The NEWS File
3492 @cindex @file{NEWS} file
3493
3494 In addition to its manual, the package should have a file named
3495 @file{NEWS} which contains a list of user-visible changes worth
3496 mentioning.  In each new release, add items to the front of the file and
3497 identify the version they pertain to.  Don't discard old items; leave
3498 them in the file after the newer items.  This way, a user upgrading from
3499 any previous version can see what is new.
3500
3501 If the @file{NEWS} file gets very long, move some of the older items
3502 into a file named @file{ONEWS} and put a note at the end referring the
3503 user to that file.
3504
3505 @node Change Logs
3506 @section Change Logs
3507 @cindex change logs
3508
3509 Keep a change log to describe all the changes made to program source
3510 files.  The purpose of this is so that people investigating bugs in the
3511 future will know about the changes that might have introduced the bug.
3512 Often a new bug can be found by looking at what was recently changed.
3513 More importantly, change logs can help you eliminate conceptual
3514 inconsistencies between different parts of a program, by giving you a
3515 history of how the conflicting concepts arose and who they came from.
3516
3517 @menu
3518 * Change Log Concepts::
3519 * Style of Change Logs::
3520 * Simple Changes::
3521 * Conditional Changes::
3522 * Indicating the Part Changed::
3523 @end menu
3524
3525 @node Change Log Concepts
3526 @subsection Change Log Concepts
3527
3528 You can think of the change log as a conceptual ``undo list'' which
3529 explains how earlier versions were different from the current version.
3530 People can see the current version; they don't need the change log
3531 to tell them what is in it.  What they want from a change log is a
3532 clear explanation of how the earlier version differed.
3533
3534 The change log file is normally called @file{ChangeLog} and covers an
3535 entire directory.  Each directory can have its own change log, or a
3536 directory can use the change log of its parent directory---it's up to
3537 you.
3538
3539 Another alternative is to record change log information with a version
3540 control system such as RCS or CVS.  This can be converted automatically
3541 to a @file{ChangeLog} file using @code{rcs2log}; in Emacs, the command
3542 @kbd{C-x v a} (@code{vc-update-change-log}) does the job.
3543
3544 There's no need to describe the full purpose of the changes or how
3545 they work together.  However, sometimes it is useful to write one line
3546 to describe the overall purpose of a change or a batch of changes.  If
3547 you think that a change calls for explanation, you're probably right.
3548 Please do explain it---but please put the full explanation in comments
3549 in the code, where people will see it whenever they see the code.  For
3550 example, ``New function'' is enough for the change log when you add a
3551 function, because there should be a comment before the function
3552 definition to explain what it does.
3553
3554 In the past, we recommended not mentioning changes in non-software
3555 files (manuals, help files, etc.) in change logs.  However, we've been
3556 advised that it is a good idea to include them, for the sake of
3557 copyright records.
3558
3559 The easiest way to add an entry to @file{ChangeLog} is with the Emacs
3560 command @kbd{M-x add-change-log-entry}.  An entry should have an
3561 asterisk, the name of the changed file, and then in parentheses the name
3562 of the changed functions, variables or whatever, followed by a colon.
3563 Then describe the changes you made to that function or variable.
3564
3565 @node Style of Change Logs
3566 @subsection Style of Change Logs
3567 @cindex change logs, style
3568
3569 Here are some simple examples of change log entries, starting with the
3570 header line that says who made the change and when it was installed,
3571 followed by descriptions of specific changes.  (These examples are
3572 drawn from Emacs and GCC.)
3573
3574 @example
3575 1998-08-17  Richard Stallman  <rms@@gnu.org>
3576
3577 * register.el (insert-register): Return nil.
3578 (jump-to-register): Likewise.
3579
3580 * sort.el (sort-subr): Return nil.
3581
3582 * tex-mode.el (tex-bibtex-file, tex-file, tex-region):
3583 Restart the tex shell if process is gone or stopped.
3584 (tex-shell-running): New function.
3585
3586 * expr.c (store_one_arg): Round size up for move_block_to_reg.
3587 (expand_call): Round up when emitting USE insns.
3588 * stmt.c (assign_parms): Round size up for move_block_from_reg.
3589 @end example
3590
3591 It's important to name the changed function or variable in full.  Don't
3592 abbreviate function or variable names, and don't combine them.
3593 Subsequent maintainers will often search for a function name to find all
3594 the change log entries that pertain to it; if you abbreviate the name,
3595 they won't find it when they search.
3596
3597 For example, some people are tempted to abbreviate groups of function
3598 names by writing @samp{* register.el (@{insert,jump-to@}-register)};
3599 this is not a good idea, since searching for @code{jump-to-register} or
3600 @code{insert-register} would not find that entry.
3601
3602 Separate unrelated change log entries with blank lines.  When two
3603 entries represent parts of the same change, so that they work together,
3604 then don't put blank lines between them.  Then you can omit the file
3605 name and the asterisk when successive entries are in the same file.
3606
3607 Break long lists of function names by closing continued lines with
3608 @samp{)}, rather than @samp{,}, and opening the continuation with
3609 @samp{(} as in this example:
3610
3611 @example
3612 * keyboard.c (menu_bar_items, tool_bar_items)
3613 (Fexecute_extended_command): Deal with 'keymap' property.
3614 @end example
3615
3616 When you install someone else's changes, put the contributor's name in
3617 the change log entry rather than in the text of the entry.  In other
3618 words, write this:
3619
3620 @example
3621 2002-07-14  John Doe  <jdoe@@gnu.org>
3622
3623         * sewing.c: Make it sew.
3624 @end example
3625
3626 @noindent
3627 rather than this:
3628
3629 @example
3630 2002-07-14  Usual Maintainer  <usual@@gnu.org>
3631
3632         * sewing.c: Make it sew.  Patch by jdoe@@gnu.org.
3633 @end example
3634
3635 As for the date, that should be the date you applied the change.
3636
3637 @node Simple Changes
3638 @subsection Simple Changes
3639
3640 Certain simple kinds of changes don't need much detail in the change
3641 log.
3642
3643 When you change the calling sequence of a function in a simple fashion,
3644 and you change all the callers of the function to use the new calling
3645 sequence, there is no need to make individual entries for all the
3646 callers that you changed.  Just write in the entry for the function
3647 being called, ``All callers changed''---like this:
3648
3649 @example
3650 * keyboard.c (Fcommand_execute): New arg SPECIAL.
3651 All callers changed.
3652 @end example
3653
3654 When you change just comments or doc strings, it is enough to write an
3655 entry for the file, without mentioning the functions.  Just ``Doc
3656 fixes'' is enough for the change log.
3657
3658 There's no technical need to make change log entries for documentation
3659 files.  This is because documentation is not susceptible to bugs that
3660 are hard to fix.  Documentation does not consist of parts that must
3661 interact in a precisely engineered fashion.  To correct an error, you
3662 need not know the history of the erroneous passage; it is enough to
3663 compare what the documentation says with the way the program actually
3664 works.
3665
3666 However, you should keep change logs for documentation files when the
3667 project gets copyright assignments from its contributors, so as to
3668 make the records of authorship more accurate.
3669
3670 @node Conditional Changes
3671 @subsection Conditional Changes
3672 @cindex conditional changes, and change logs
3673 @cindex change logs, conditional changes
3674
3675 Source files can often contain code that is conditional to build-time
3676 or static conditions.  For example, C programs can contain
3677 compile-time @code{#if} conditionals; programs implemented in
3678 interpreted languages can contain module imports of function
3679 definitions that are only performed for certain versions of the
3680 interpreter; and Automake @file{Makefile.am} files can contain
3681 variable definitions or target declarations that are only to be
3682 considered if a configure-time Automake conditional is true.
3683
3684 Many changes are conditional as well: sometimes you add a new variable,
3685 or function, or even a new program or library, which is entirely
3686 dependent on a build-time condition.  It is useful to indicate
3687 in the change log the conditions for which a change applies.
3688
3689 Our convention for indicating conditional changes is to use
3690 @emph{square brackets around the name of the condition}.
3691
3692 Conditional changes can happen in numerous scenarios and with many
3693 variations, so here are some examples to help clarify.  This first
3694 example describes changes in C, Perl, and Python files which are
3695 conditional but do not have an associated function or entity name:
3696
3697 @example
3698 * xterm.c [SOLARIS2]: Include <string.h>.
3699 * FilePath.pm [$^O eq 'VMS']: Import the VMS::Feature module.
3700 * framework.py [sys.version_info < (2, 6)]: Make "with" statement
3701   available by importing it from __future__,
3702   to support also python 2.5.
3703 @end example
3704
3705 Our other examples will for simplicity be limited to C, as the minor
3706 changes necessary to adapt them to other languages should be
3707 self-evident.
3708
3709 Next, here is an entry describing a new definition which is entirely
3710 conditional: the C macro @code{FRAME_WINDOW_P} is defined (and used)
3711 only when the macro @code{HAVE_X_WINDOWS} is defined:
3712
3713 @example
3714 * frame.h [HAVE_X_WINDOWS] (FRAME_WINDOW_P): Macro defined.
3715 @end example
3716
3717 Next, an entry for a change within the function @code{init_display},
3718 whose definition as a whole is unconditional, but the changes
3719 themselves are contained in a @samp{#ifdef HAVE_LIBNCURSES}
3720 conditional:
3721
3722 @example
3723 * dispnew.c (init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
3724 @end example
3725
3726 Finally, here is an entry for a change that takes effect only when
3727 a certain macro is @emph{not} defined:
3728
3729 @example
3730 (gethostname) [!HAVE_SOCKETS]: Replace with winsock version.
3731 @end example
3732
3733 @node Indicating the Part Changed
3734 @subsection Indicating the Part Changed
3735
3736 Indicate the part of a function which changed by using angle brackets
3737 enclosing an indication of what the changed part does.  Here is an entry
3738 for a change in the part of the function @code{sh-while-getopts} that
3739 deals with @code{sh} commands:
3740
3741 @example
3742 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
3743 user-specified option string is empty.
3744 @end example
3745
3746
3747 @node Man Pages
3748 @section Man Pages
3749 @cindex man pages
3750
3751 In the GNU project, man pages are secondary.  It is not necessary or
3752 expected for every GNU program to have a man page, but some of them do.
3753 It's your choice whether to include a man page in your program.
3754
3755 When you make this decision, consider that supporting a man page
3756 requires continual effort each time the program is changed.  The time
3757 you spend on the man page is time taken away from more useful work.
3758
3759 For a simple program which changes little, updating the man page may be
3760 a small job.  Then there is little reason not to include a man page, if
3761 you have one.
3762
3763 For a large program that changes a great deal, updating a man page may
3764 be a substantial burden.  If a user offers to donate a man page, you may
3765 find this gift costly to accept.  It may be better to refuse the man
3766 page unless the same person agrees to take full responsibility for
3767 maintaining it---so that you can wash your hands of it entirely.  If
3768 this volunteer later ceases to do the job, then don't feel obliged to
3769 pick it up yourself; it may be better to withdraw the man page from the
3770 distribution until someone else agrees to update it.
3771
3772 When a program changes only a little, you may feel that the
3773 discrepancies are small enough that the man page remains useful without
3774 updating.  If so, put a prominent note near the beginning of the man
3775 page explaining that you don't maintain it and that the Texinfo manual
3776 is more authoritative.  The note should say how to access the Texinfo
3777 documentation.
3778
3779 Be sure that man pages include a copyright statement and free license.
3780 The simple all-permissive license is appropriate for simple man pages
3781 (@pxref{License Notices for Other Files,,,maintain,Information for GNU
3782 Maintainers}).
3783
3784 For long man pages, with enough explanation and documentation that
3785 they can be considered true manuals, use the GFDL (@pxref{License for
3786 Manuals}).
3787
3788 Finally, the GNU help2man program
3789 (@uref{http://www.gnu.org/software/help2man/}) is one way to automate
3790 generation of a man page, in this case from @option{--help} output.
3791 This is sufficient in many cases.
3792
3793 @node Reading other Manuals
3794 @section Reading other Manuals
3795
3796 There may be non-free books or documentation files that describe the
3797 program you are documenting.
3798
3799 It is ok to use these documents for reference, just as the author of a
3800 new algebra textbook can read other books on algebra.  A large portion
3801 of any non-fiction book consists of facts, in this case facts about how
3802 a certain program works, and these facts are necessarily the same for
3803 everyone who writes about the subject.  But be careful not to copy your
3804 outline structure, wording, tables or examples from preexisting non-free
3805 documentation.  Copying from free documentation may be ok; please check
3806 with the FSF about the individual case.
3807
3808 @node Managing Releases
3809 @chapter The Release Process
3810 @cindex releasing
3811
3812 Making a release is more than just bundling up your source files in a
3813 tar file and putting it up for FTP.  You should set up your software so
3814 that it can be configured to run on a variety of systems.  Your Makefile
3815 should conform to the GNU standards described below, and your directory
3816 layout should also conform to the standards discussed below.  Doing so
3817 makes it easy to include your package into the larger framework of
3818 all GNU software.
3819
3820 @menu
3821 * Configuration::               How configuration of GNU packages should work.
3822 * Makefile Conventions::        Makefile conventions.
3823 * Releases::                    Making releases
3824 @end menu
3825
3826 @node Configuration
3827 @section How Configuration Should Work
3828 @cindex program configuration
3829
3830 @pindex configure
3831 Each GNU distribution should come with a shell script named
3832 @code{configure}.  This script is given arguments which describe the
3833 kind of machine and system you want to compile the program for.
3834 The @code{configure} script must record the configuration options so
3835 that they affect compilation.
3836
3837 The description here is the specification of the interface for the
3838 @code{configure} script in GNU packages.  Many packages implement it
3839 using GNU Autoconf (@pxref{Top,, Introduction, autoconf, Autoconf})
3840 and/or GNU Automake (@pxref{Top,, Introduction, automake, Automake}),
3841 but you do not have to use these tools.  You can implement it any way
3842 you like; for instance, by making @code{configure} be a wrapper around
3843 a completely different configuration system.
3844
3845 Another way for the @code{configure} script to operate is to make a
3846 link from a standard name such as @file{config.h} to the proper
3847 configuration file for the chosen system.  If you use this technique,
3848 the distribution should @emph{not} contain a file named
3849 @file{config.h}.  This is so that people won't be able to build the
3850 program without configuring it first.
3851
3852 Another thing that @code{configure} can do is to edit the Makefile.  If
3853 you do this, the distribution should @emph{not} contain a file named
3854 @file{Makefile}.  Instead, it should include a file @file{Makefile.in} which
3855 contains the input used for editing.  Once again, this is so that people
3856 won't be able to build the program without configuring it first.
3857
3858 If @code{configure} does write the @file{Makefile}, then @file{Makefile}
3859 should have a target named @file{Makefile} which causes @code{configure}
3860 to be rerun, setting up the same configuration that was set up last
3861 time.  The files that @code{configure} reads should be listed as
3862 dependencies of @file{Makefile}.
3863
3864 All the files which are output from the @code{configure} script should
3865 have comments at the beginning explaining that they were generated
3866 automatically using @code{configure}.  This is so that users won't think
3867 of trying to edit them by hand.
3868
3869 The @code{configure} script should write a file named @file{config.status}
3870 which describes which configuration options were specified when the
3871 program was last configured.  This file should be a shell script which,
3872 if run, will recreate the same configuration.
3873
3874 The @code{configure} script should accept an option of the form
3875 @samp{--srcdir=@var{dirname}} to specify the directory where sources are found
3876 (if it is not the current directory).  This makes it possible to build
3877 the program in a separate directory, so that the actual source directory
3878 is not modified.
3879
3880 If the user does not specify @samp{--srcdir}, then @code{configure} should
3881 check both @file{.} and @file{..} to see if it can find the sources.  If
3882 it finds the sources in one of these places, it should use them from
3883 there.  Otherwise, it should report that it cannot find the sources, and
3884 should exit with nonzero status.
3885
3886 Usually the easy way to support @samp{--srcdir} is by editing a
3887 definition of @code{VPATH} into the Makefile.  Some rules may need to
3888 refer explicitly to the specified source directory.  To make this
3889 possible, @code{configure} can add to the Makefile a variable named
3890 @code{srcdir} whose value is precisely the specified directory.
3891
3892 In addition, the @samp{configure} script should take options
3893 corresponding to most of the standard directory variables
3894 (@pxref{Directory Variables}).  Here is the list:
3895
3896 @example
3897 --prefix --exec-prefix --bindir --sbindir --libexecdir --sysconfdir
3898 --sharedstatedir --localstatedir --libdir --includedir --oldincludedir
3899 --datarootdir --datadir --infodir --localedir --mandir --docdir
3900 --htmldir --dvidir --pdfdir --psdir
3901 @end example
3902
3903 The @code{configure} script should also take an argument which specifies the
3904 type of system to build the program for.  This argument should look like
3905 this:
3906
3907 @example
3908 @var{cpu}-@var{company}-@var{system}
3909 @end example
3910
3911 For example, an Athlon-based GNU/Linux system might be
3912 @samp{i686-pc-linux-gnu}.
3913
3914 The @code{configure} script needs to be able to decode all plausible
3915 alternatives for how to describe a machine.  Thus,
3916 @samp{athlon-pc-gnu/linux} would be a valid alias.  There is a shell
3917 script called
3918 @uref{http://git.savannah.gnu.org/@/gitweb/@/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD,
3919 @file{config.sub}} that you can use as a subroutine to validate system
3920 types and canonicalize aliases.
3921
3922 The @code{configure} script should also take the option
3923 @option{--build=@var{buildtype}}, which should be equivalent to a
3924 plain @var{buildtype} argument.  For example, @samp{configure
3925 --build=i686-pc-linux-gnu} is equivalent to @samp{configure
3926 i686-pc-linux-gnu}.  When the build type is not specified by an option
3927 or argument, the @code{configure} script should normally guess it using
3928 the shell script
3929 @uref{http://git.savannah.gnu.org/@/gitweb/@/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD,
3930 @file{config.guess}}.
3931
3932 @cindex optional features, configure-time
3933 Other options are permitted to specify in more detail the software
3934 or hardware present on the machine, to include or exclude optional parts
3935 of the package, or to adjust the name of some tools or arguments to them:
3936
3937 @table @samp
3938 @item --enable-@var{feature}@r{[}=@var{parameter}@r{]}
3939 Configure the package to build and install an optional user-level
3940 facility called @var{feature}.  This allows users to choose which
3941 optional features to include.  Giving an optional @var{parameter} of
3942 @samp{no} should omit @var{feature}, if it is built by default.
3943
3944 No @samp{--enable} option should @strong{ever} cause one feature to
3945 replace another.  No @samp{--enable} option should ever substitute one
3946 useful behavior for another useful behavior.  The only proper use for
3947 @samp{--enable} is for questions of whether to build part of the program
3948 or exclude it.
3949
3950 @item --with-@var{package}
3951 @c @r{[}=@var{parameter}@r{]}
3952 The package @var{package} will be installed, so configure this package
3953 to work with @var{package}.
3954
3955 @c  Giving an optional @var{parameter} of
3956 @c @samp{no} should omit @var{package}, if it is used by default.
3957
3958 Possible values of @var{package} include
3959 @samp{gnu-as} (or @samp{gas}), @samp{gnu-ld}, @samp{gnu-libc},
3960 @samp{gdb},
3961 @samp{x},
3962 and
3963 @samp{x-toolkit}.
3964
3965 Do not use a @samp{--with} option to specify the file name to use to
3966 find certain files.  That is outside the scope of what @samp{--with}
3967 options are for.
3968
3969 @item @var{variable}=@var{value}
3970 Set the value of the variable @var{variable} to @var{value}.  This is
3971 used to override the default values of commands or arguments in the
3972 build process.  For example, the user could issue @samp{configure
3973 CFLAGS=-g CXXFLAGS=-g} to build with debugging information and without
3974 the default optimization.
3975
3976 Specifying variables as arguments to @code{configure}, like this:
3977 @example
3978 ./configure CC=gcc
3979 @end example
3980 is preferable to setting them in environment variables:
3981 @example
3982 CC=gcc ./configure
3983 @end example
3984 as it helps to recreate the same configuration later with
3985 @file{config.status}.  However, both methods should be supported.
3986 @end table
3987
3988 All @code{configure} scripts should accept all of the ``detail''
3989 options and the variable settings, whether or not they make any
3990 difference to the particular package at hand.  In particular, they
3991 should accept any option that starts with @samp{--with-} or
3992 @samp{--enable-}.  This is so users will be able to configure an
3993 entire GNU source tree at once with a single set of options.
3994
3995 You will note that the categories @samp{--with-} and @samp{--enable-}
3996 are narrow: they @strong{do not} provide a place for any sort of option
3997 you might think of.  That is deliberate.  We want to limit the possible
3998 configuration options in GNU software.  We do not want GNU programs to
3999 have idiosyncratic configuration options.
4000
4001 Packages that perform part of the compilation process may support
4002 cross-compilation.  In such a case, the host and target machines for the
4003 program may be different.
4004
4005 The @code{configure} script should normally treat the specified type of
4006 system as both the host and the target, thus producing a program which
4007 works for the same type of machine that it runs on.
4008
4009 To compile a program to run on a host type that differs from the build
4010 type, use the configure option @option{--host=@var{hosttype}}, where
4011 @var{hosttype} uses the same syntax as @var{buildtype}.  The host type
4012 normally defaults to the build type.
4013
4014 To configure a cross-compiler, cross-assembler, or what have you, you
4015 should specify a target different from the host, using the configure
4016 option @samp{--target=@var{targettype}}.  The syntax for
4017 @var{targettype} is the same as for the host type.  So the command would
4018 look like this:
4019
4020 @example
4021 ./configure --host=@var{hosttype} --target=@var{targettype}
4022 @end example
4023
4024 The target type normally defaults to the host type.
4025 Programs for which cross-operation is not meaningful need not accept the
4026 @samp{--target} option, because configuring an entire operating system for
4027 cross-operation is not a meaningful operation.
4028
4029 Some programs have ways of configuring themselves automatically.  If
4030 your program is set up to do this, your @code{configure} script can simply
4031 ignore most of its arguments.
4032
4033 @comment The makefile standards are in a separate file that is also
4034 @comment included by make.texinfo.  Done by roland@gnu.ai.mit.edu on 1/6/93.
4035 @comment For this document, turn chapters into sections, etc.
4036 @lowersections
4037 @include make-stds.texi
4038 @raisesections
4039
4040 @node Releases
4041 @section Making Releases
4042 @cindex packaging
4043
4044 You should identify each release with a pair of version numbers, a
4045 major version and a minor.  We have no objection to using more than
4046 two numbers, but it is very unlikely that you really need them.
4047
4048 Package the distribution of @code{Foo version 69.96} up in a gzipped tar
4049 file with the name @file{foo-69.96.tar.gz}.  It should unpack into a
4050 subdirectory named @file{foo-69.96}.
4051
4052 Building and installing the program should never modify any of the files
4053 contained in the distribution.  This means that all the files that form
4054 part of the program in any way must be classified into @dfn{source
4055 files} and @dfn{non-source files}.  Source files are written by humans
4056 and never changed automatically; non-source files are produced from
4057 source files by programs under the control of the Makefile.
4058
4059 @cindex @file{README} file
4060 The distribution should contain a file named @file{README} which gives
4061 the name of the package, and a general description of what it does.  It
4062 is also good to explain the purpose of each of the first-level
4063 subdirectories in the package, if there are any.  The @file{README} file
4064 should either state the version number of the package, or refer to where
4065 in the package it can be found.
4066
4067 The @file{README} file should refer to the file @file{INSTALL}, which
4068 should contain an explanation of the installation procedure.
4069
4070 The @file{README} file should also refer to the file which contains the
4071 copying conditions.  The GNU GPL, if used, should be in a file called
4072 @file{COPYING}.  If the GNU LGPL is used, it should be in a file called
4073 @file{COPYING.LESSER}.
4074
4075 Naturally, all the source files must be in the distribution.  It is
4076 okay to include non-source files in the distribution along with the
4077 source files they are generated from, provided they are up-to-date
4078 with the source they are made from, and machine-independent, so that
4079 normal building of the distribution will never modify them.  We
4080 commonly include non-source files produced by Autoconf, Automake,
4081 Bison, @code{lex}, @TeX{}, and @code{makeinfo}; this helps avoid
4082 unnecessary dependencies between our distributions, so that users can
4083 install whichever packages they want to install.
4084
4085 Non-source files that might actually be modified by building and
4086 installing the program should @strong{never} be included in the
4087 distribution.  So if you do distribute non-source files, always make
4088 sure they are up to date when you make a new distribution.
4089
4090 Make sure that all the files in the distribution are world-readable, and
4091 that directories are world-readable and world-searchable (octal mode 755).
4092 We used to recommend that all directories in the distribution also be
4093 world-writable (octal mode 777), because ancient versions of @code{tar}
4094 would otherwise not cope when extracting the archive as an unprivileged
4095 user.  That can easily lead to security issues when creating the archive,
4096 however, so now we recommend against that.
4097
4098 Don't include any symbolic links in the distribution itself.  If the tar
4099 file contains symbolic links, then people cannot even unpack it on
4100 systems that don't support symbolic links.  Also, don't use multiple
4101 names for one file in different directories, because certain file
4102 systems cannot handle this and that prevents unpacking the
4103 distribution.
4104
4105 Try to make sure that all the file names will be unique on MS-DOS.  A
4106 name on MS-DOS consists of up to 8 characters, optionally followed by a
4107 period and up to three characters.  MS-DOS will truncate extra
4108 characters both before and after the period.  Thus,
4109 @file{foobarhacker.c} and @file{foobarhacker.o} are not ambiguous; they
4110 are truncated to @file{foobarha.c} and @file{foobarha.o}, which are
4111 distinct.
4112
4113 @cindex @file{texinfo.tex}, in a distribution
4114 Include in your distribution a copy of the @file{texinfo.tex} you used
4115 to test print any @file{*.texinfo} or @file{*.texi} files.
4116
4117 Likewise, if your program uses small GNU software packages like regex,
4118 getopt, obstack, or termcap, include them in the distribution file.
4119 Leaving them out would make the distribution file a little smaller at
4120 the expense of possible inconvenience to a user who doesn't know what
4121 other files to get.
4122
4123 @node References
4124 @chapter References to Non-Free Software and Documentation
4125 @cindex references to non-free material
4126
4127 A GNU program should not recommend, promote, or grant legitimacy to
4128 the use of any non-free program.  Proprietary software is a social and
4129 ethical problem, and our aim is to put an end to that problem.  We
4130 can't stop some people from writing proprietary programs, or stop
4131 other people from using them, but we can and should refuse to
4132 advertise them to new potential customers, or to give the public the
4133 idea that their existence is ethical.
4134
4135 The GNU definition of free software is found on the GNU web site at
4136 @url{http://www.gnu.org/@/philosophy/@/free-sw.html}, and the definition
4137 of free documentation is found at
4138 @url{http://www.gnu.org/@/philosophy/@/free-doc.html}.  The terms ``free''
4139 and ``non-free'', used in this document, refer to those definitions.
4140
4141 A list of important licenses and whether they qualify as free is in
4142 @url{http://www.gnu.org/@/licenses/@/license-list.html}.  If it is not
4143 clear whether a license qualifies as free, please ask the GNU Project
4144 by writing to @email{licensing@@gnu.org}.  We will answer, and if the
4145 license is an important one, we will add it to the list.
4146
4147 When a non-free program or system is well known, you can mention it in
4148 passing---that is harmless, since users who might want to use it
4149 probably already know about it.  For instance, it is fine to explain
4150 how to build your package on top of some widely used non-free
4151 operating system, or how to use it together with some widely used
4152 non-free program.
4153
4154 However, you should give only the necessary information to help those
4155 who already use the non-free program to use your program with
4156 it---don't give, or refer to, any further information about the
4157 proprietary program, and don't imply that the proprietary program
4158 enhances your program, or that its existence is in any way a good
4159 thing.  The goal should be that people already using the proprietary
4160 program will get the advice they need about how to use your free
4161 program with it, while people who don't already use the proprietary
4162 program will not see anything likely to lead them to take an interest
4163 in it.
4164
4165 If a non-free program or system is obscure in your program's domain,
4166 your program should not mention or support it at all, since doing so
4167 would tend to popularize the non-free program more than it popularizes
4168 your program.  (You cannot hope to find many additional users for your
4169 program among the users of Foobar, if the existence of Foobar is not
4170 generally known among people who might want to use your program.)
4171
4172 Sometimes a program is free software in itself but depends on a
4173 non-free platform in order to run.  For instance, many Java programs
4174 depend on some non-free Java libraries.  To recommend or promote such
4175 a program is to promote the other programs it needs.  This is why we
4176 are careful about listing Java programs in the Free Software
4177 Directory: we don't want to promote the non-free Java libraries.
4178
4179 We hope this particular problem with Java will be gone by and by, as
4180 we replace the remaining non-free standard Java libraries with free
4181 software, but the general principle will remain the same: don't
4182 recommend, promote or legitimize programs that depend on non-free
4183 software to run.
4184
4185 Some free programs strongly encourage the use of non-free software.  A
4186 typical example is @command{mplayer}.  It is free software in itself,
4187 and the free code can handle some kinds of files.  However,
4188 @command{mplayer} recommends use of non-free codecs for other kinds of
4189 files, and users that install @command{mplayer} are very likely to
4190 install those codecs along with it.  To recommend @command{mplayer}
4191 is, in effect, to promote use of the non-free codecs.
4192
4193 Thus, you should not recommend programs that strongly encourage the
4194 use of non-free software.  This is why we do not list
4195 @command{mplayer} in the Free Software Directory.
4196
4197 A GNU package should not refer the user to any non-free documentation
4198 for free software.  Free documentation that can be included in free
4199 operating systems is essential for completing the GNU system, or any
4200 free operating system, so encouraging it is a priority; to recommend
4201 use of documentation that we are not allowed to include undermines the
4202 impetus for the community to produce documentation that we can
4203 include.  So GNU packages should never recommend non-free
4204 documentation.
4205
4206 By contrast, it is ok to refer to journal articles and textbooks in
4207 the comments of a program for explanation of how it functions, even
4208 though they are non-free.  This is because we don't include such
4209 things in the GNU system even if they are free---they are outside the
4210 scope of what a software distribution needs to include.
4211
4212 Referring to a web site that describes or recommends a non-free
4213 program is promoting that program, so please do not make links to (or
4214 mention by name) web sites that contain such material.  This policy is
4215 relevant particularly for the web pages for a GNU package.
4216
4217 Following links from nearly any web site can lead eventually to
4218 non-free software; this is inherent in the nature of the web.  So it
4219 makes no sense to criticize a site for having such links.  As long as
4220 the site does not itself recommend a non-free program, there is no
4221 need to consider the question of the sites that it links to for other
4222 reasons.
4223
4224 Thus, for example, you should not refer to AT&T's web site if that
4225 recommends AT&T's non-free software packages; you should not refer to
4226 a site that links to AT&T's site presenting it as a place to get some
4227 non-free program, because that link recommends and legitimizes the
4228 non-free program.  However, that a site contains a link to AT&T's web
4229 site for some other purpose (such as long-distance telephone service)
4230 is not an objection against it.
4231
4232 @node GNU Free Documentation License
4233 @appendix GNU Free Documentation License
4234
4235 @cindex FDL, GNU Free Documentation License
4236 @include fdl.texi
4237
4238 @node Index
4239 @unnumbered Index
4240 @printindex cp
4241
4242 @bye
4243
4244 Local variables:
4245 eval: (add-hook 'write-file-hooks 'time-stamp)
4246 time-stamp-start: "@set lastupdate "
4247 time-stamp-end: "$"
4248 time-stamp-format: "%:b %:d, %:y"
4249 compile-command: "cd work.s && make"
4250 End: