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