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