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