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