update from main archive 961105
[glibc.git] / manual / intro.texi
blob382f35c0391eb2d2c1f099f897da8b9fe8ab9ac2
1 @node Introduction, Error Reporting, Top, Top
2 @chapter Introduction
4 The C language provides no built-in facilities for performing such
5 common operations as input/output, memory management, string
6 manipulation, and the like.  Instead, these facilities are defined
7 in a standard @dfn{library}, which you compile and link with your
8 programs.
9 @cindex library
11 The GNU C library, described in this document, defines all of the
12 library functions that are specified by the ANSI C standard, as well as
13 additional features specific to POSIX and other derivatives of the Unix
14 operating system, and extensions specific to the GNU system.
16 The purpose of this manual is to tell you how to use the facilities
17 of the GNU library.  We have mentioned which features belong to which
18 standards to help you identify things that are potentially nonportable
19 to other systems.  But the emphasis in this manual is not on strict
20 portability.
22 @menu
23 * Getting Started::             What this manual is for and how to use it.
24 * Standards and Portability::   Standards and sources upon which the GNU
25                                  C library is based.
26 * Using the Library::           Some practical uses for the library.
27 * Roadmap to the Manual::       Overview of the remaining chapters in
28                                  this manual.
29 @end menu
31 @node Getting Started, Standards and Portability,  , Introduction
32 @section Getting Started
34 This manual is written with the assumption that you are at least
35 somewhat familiar with the C programming language and basic programming
36 concepts.  Specifically, familiarity with ANSI standard C
37 (@pxref{ANSI C}), rather than ``traditional'' pre-ANSI C dialects, is
38 assumed.
40 The GNU C library includes several @dfn{header files}, each of which
41 provides definitions and declarations for a group of related facilities;
42 this information is used by the C compiler when processing your program.
43 For example, the header file @file{stdio.h} declares facilities for
44 performing input and output, and the header file @file{string.h}
45 declares string processing utilities.  The organization of this manual
46 generally follows the same division as the header files.
48 If you are reading this manual for the first time, you should read all
49 of the introductory material and skim the remaining chapters.  There are
50 a @emph{lot} of functions in the GNU C library and it's not realistic to
51 expect that you will be able to remember exactly @emph{how} to use each
52 and every one of them.  It's more important to become generally familiar
53 with the kinds of facilities that the library provides, so that when you
54 are writing your programs you can recognize @emph{when} to make use of
55 library functions, and @emph{where} in this manual you can find more
56 specific information about them.
59 @node Standards and Portability, Using the Library, Getting Started, Introduction
60 @section Standards and Portability
61 @cindex standards
63 This section discusses the various standards and other sources that the
64 GNU C library is based upon.  These sources include the ANSI C and
65 POSIX standards, and the System V and Berkeley Unix implementations.
67 The primary focus of this manual is to tell you how to make effective
68 use of the GNU library facilities.  But if you are concerned about
69 making your programs compatible with these standards, or portable to
70 operating systems other than GNU, this can affect how you use the
71 library.  This section gives you an overview of these standards, so that
72 you will know what they are when they are mentioned in other parts of
73 the manual.
75 @xref{Library Summary}, for an alphabetical list of the functions and
76 other symbols provided by the library.  This list also states which
77 standards each function or symbol comes from.
79 @menu
80 * ANSI C::                      The American National Standard for the
81                                  C programming language.
82 * POSIX::                       The IEEE 1003 standards for operating
83                                  systems.
84 * Berkeley Unix::               BSD and SunOS.
85 * SVID::                        The System V Interface Description.
86 @end menu
88 @node ANSI C, POSIX,  , Standards and Portability
89 @subsection ANSI C
90 @cindex ANSI C
92 The GNU C library is compatible with the C standard adopted by the
93 American National Standards Institute (ANSI):
94 @cite{American National Standard X3.159-1989---``ANSI C''}.
95 The header files and library facilities that make up the GNU library are
96 a superset of those specified by the ANSI C standard.@refill
98 @pindex gcc
99 If you are concerned about strict adherence to the ANSI C standard, you
100 should use the @samp{-ansi} option when you compile your programs with
101 the GNU C compiler.  This tells the compiler to define @emph{only} ANSI
102 standard features from the library header files, unless you explicitly
103 ask for additional features.  @xref{Feature Test Macros}, for
104 information on how to do this.
106 Being able to restrict the library to include only ANSI C features is
107 important because ANSI C puts limitations on what names can be defined
108 by the library implementation, and the GNU extensions don't fit these
109 limitations.  @xref{Reserved Names}, for more information about these
110 restrictions.
112 This manual does not attempt to give you complete details on the
113 differences between ANSI C and older dialects.  It gives advice on how
114 to write programs to work portably under multiple C dialects, but does
115 not aim for completeness.
117 @node POSIX, Berkeley Unix, ANSI C, Standards and Portability
118 @subsection POSIX (The Portable Operating System Interface)
119 @cindex POSIX
120 @cindex POSIX.1
121 @cindex IEEE Std 1003.1
122 @cindex POSIX.2
123 @cindex IEEE Std 1003.2
125 The GNU library is also compatible with the IEEE @dfn{POSIX} family of
126 standards, known more formally as the @dfn{Portable Operating System
127 Interface for Computer Environments}.  POSIX is derived mostly from
128 various versions of the Unix operating system.
130 The library facilities specified by the POSIX standards are a superset
131 of those required by ANSI C; POSIX specifies additional features for
132 ANSI C functions, as well as specifying new additional functions.  In
133 general, the additional requirements and functionality defined by the
134 POSIX standards are aimed at providing lower-level support for a
135 particular kind of operating system environment, rather than general
136 programming language support which can run in many diverse operating
137 system environments.@refill
139 The GNU C library implements all of the functions specified in
140 @cite{IEEE Std 1003.1-1990, the POSIX System Application Program
141 Interface}, commonly referred to as POSIX.1.  The primary extensions to
142 the ANSI C facilities specified by this standard include file system
143 interface primitives (@pxref{File System Interface}), device-specific
144 terminal control functions (@pxref{Low-Level Terminal Interface}), and
145 process control functions (@pxref{Processes}).
147 Some facilities from @cite{IEEE Std 1003.2-1992, the POSIX Shell and
148 Utilities standard} (POSIX.2) are also implemented in the GNU library.
149 These include utilities for dealing with regular expressions and other
150 pattern matching facilities (@pxref{Pattern Matching}).
152 @comment Roland sez:
153 @comment The GNU C library as it stands conforms to 1003.2 draft 11, which
154 @comment specifies:
155 @comment
156 @comment Several new macros in <limits.h>.
157 @comment popen, pclose
158 @comment <regex.h> (which is not yet fully implemented--wait on this)
159 @comment fnmatch
160 @comment getopt
161 @comment <glob.h>
162 @comment <wordexp.h> (not yet implemented)
163 @comment confstr
166 @node Berkeley Unix, SVID, POSIX, Standards and Portability
167 @subsection Berkeley Unix
168 @cindex BSD Unix
169 @cindex 4.@var{n} BSD Unix
170 @cindex Berkeley Unix
171 @cindex SunOS
172 @cindex Unix, Berkeley
174 The GNU C library defines facilities from some versions of Unix which
175 are not formally standardized, specifically from the 4.2 BSD, 4.3 BSD,
176 and 4.4 BSD Unix systems (also known as @dfn{Berkeley Unix}) and from
177 @dfn{SunOS} (a popular 4.2 BSD derivative that includes some Unix System
178 V functionality).  These systems support most of the ANSI and POSIX
179 facilities, and 4.4 BSD and newer releases of SunOS in fact support them all.
181 The BSD facilities include symbolic links (@pxref{Symbolic Links}), the
182 @code{select} function (@pxref{Waiting for I/O}), the BSD signal
183 functions (@pxref{BSD Signal Handling}), and sockets (@pxref{Sockets}).
185 @node SVID,  , Berkeley Unix, Standards and Portability
186 @subsection SVID (The System V Interface Description)
187 @cindex SVID
188 @cindex System V Unix
189 @cindex Unix, System V
191 The @dfn{System V Interface Description} (SVID) is a document describing
192 the AT&T Unix System V operating system.  It is to some extent a
193 superset of the POSIX standard (@pxref{POSIX}).
195 The GNU C library defines some of the facilities required by the SVID
196 that are not also required by the ANSI or POSIX standards, for
197 compatibility with  System V Unix and other Unix systems (such as
198 SunOS) which include these facilities.  However, many of the more
199 obscure and less generally useful facilities required by the SVID are
200 not included.  (In fact, Unix System V itself does not provide them all.)
202 @c !!! mention sysv ipc/shmem when it is there.
205 @node Using the Library, Roadmap to the Manual, Standards and Portability, Introduction
206 @section Using the Library
208 This section describes some of the practical issues involved in using
209 the GNU C library.
211 @menu
212 * Header Files::                How to include the header files in your
213                                  programs.
214 * Macro Definitions::           Some functions in the library may really
215                                  be implemented as macros.
216 * Reserved Names::              The C standard reserves some names for
217                                  the library, and some for users.
218 * Feature Test Macros::         How to control what names are defined.
219 @end menu
221 @node Header Files, Macro Definitions,  , Using the Library
222 @subsection Header Files
223 @cindex header files
225 Libraries for use by C programs really consist of two parts: @dfn{header
226 files} that define types and macros and declare variables and
227 functions; and the actual library or @dfn{archive} that contains the
228 definitions of the variables and functions.
230 (Recall that in C, a @dfn{declaration} merely provides information that
231 a function or variable exists and gives its type.  For a function
232 declaration, information about the types of its arguments might be
233 provided as well.  The purpose of declarations is to allow the compiler
234 to correctly process references to the declared variables and functions.
235 A @dfn{definition}, on the other hand, actually allocates storage for a
236 variable or says what a function does.)
237 @cindex definition (compared to declaration)
238 @cindex declaration (compared to definition)
240 In order to use the facilities in the GNU C library, you should be sure
241 that your program source files include the appropriate header files.
242 This is so that the compiler has declarations of these facilities
243 available and can correctly process references to them.  Once your
244 program has been compiled, the linker resolves these references to
245 the actual definitions provided in the archive file.
247 Header files are included into a program source file by the
248 @samp{#include} preprocessor directive.  The C language supports two
249 forms of this directive; the first,
251 @smallexample
252 #include "@var{header}"
253 @end smallexample
255 @noindent
256 is typically used to include a header file @var{header} that you write
257 yourself; this would contain definitions and declarations describing the
258 interfaces between the different parts of your particular application.
259 By contrast,
261 @smallexample
262 #include <file.h>
263 @end smallexample
265 @noindent
266 is typically used to include a header file @file{file.h} that contains
267 definitions and declarations for a standard library.  This file would
268 normally be installed in a standard place by your system administrator.
269 You should use this second form for the C library header files.
271 Typically, @samp{#include} directives are placed at the top of the C
272 source file, before any other code.  If you begin your source files with
273 some comments explaining what the code in the file does (a good idea),
274 put the @samp{#include} directives immediately afterwards, following the
275 feature test macro definition (@pxref{Feature Test Macros}).
277 For more information about the use of header files and @samp{#include}
278 directives, @pxref{Header Files,,, cpp.info, The GNU C Preprocessor
279 Manual}.@refill
281 The GNU C library provides several header files, each of which contains
282 the type and macro definitions and variable and function declarations
283 for a group of related facilities.  This means that your programs may
284 need to include several header files, depending on exactly which
285 facilities you are using.
287 Some library header files include other library header files
288 automatically.  However, as a matter of programming style, you should
289 not rely on this; it is better to explicitly include all the header
290 files required for the library facilities you are using.  The GNU C
291 library header files have been written in such a way that it doesn't
292 matter if a header file is accidentally included more than once;
293 including a header file a second time has no effect.  Likewise, if your
294 program needs to include multiple header files, the order in which they
295 are included doesn't matter.
297 @strong{Compatibility Note:} Inclusion of standard header files in any
298 order and any number of times works in any ANSI C implementation.
299 However, this has traditionally not been the case in many older C
300 implementations.
302 Strictly speaking, you don't @emph{have to} include a header file to use
303 a function it declares; you could declare the function explicitly
304 yourself, according to the specifications in this manual.  But it is
305 usually better to include the header file because it may define types
306 and macros that are not otherwise available and because it may define
307 more efficient macro replacements for some functions.  It is also a sure
308 way to have the correct declaration.
310 @node Macro Definitions, Reserved Names, Header Files, Using the Library
311 @subsection Macro Definitions of Functions
312 @cindex shadowing functions with macros
313 @cindex removing macros that shadow functions
314 @cindex undefining macros that shadow functions
316 If we describe something as a function in this manual, it may have a
317 macro definition as well.  This normally has no effect on how your
318 program runs---the macro definition does the same thing as the function
319 would.  In particular, macro equivalents for library functions evaluate
320 arguments exactly once, in the same way that a function call would.  The
321 main reason for these macro definitions is that sometimes they can
322 produce an inline expansion that is considerably faster than an actual
323 function call.
325 Taking the address of a library function works even if it is also
326 defined as a macro.  This is because, in this context, the name of the
327 function isn't followed by the left parenthesis that is syntactically
328 necessary to recognize a macro call.
330 You might occasionally want to avoid using the macro definition of a
331 function---perhaps to make your program easier to debug.  There are
332 two ways you can do this:
334 @itemize @bullet
335 @item
336 You can avoid a macro definition in a specific use by enclosing the name
337 of the function in parentheses.  This works because the name of the
338 function doesn't appear in a syntactic context where it is recognizable
339 as a macro call.
341 @item
342 You can suppress any macro definition for a whole source file by using
343 the @samp{#undef} preprocessor directive, unless otherwise stated
344 explicitly in the description of that facility.
345 @end itemize
347 For example, suppose the header file @file{stdlib.h} declares a function
348 named @code{abs} with
350 @smallexample
351 extern int abs (int);
352 @end smallexample
354 @noindent
355 and also provides a macro definition for @code{abs}.  Then, in:
357 @smallexample
358 #include <stdlib.h>
359 int f (int *i) @{ return (abs (++*i)); @}
360 @end smallexample
362 @noindent
363 the reference to @code{abs} might refer to either a macro or a function.
364 On the other hand, in each of the following examples the reference is
365 to a function and not a macro.
367 @smallexample
368 #include <stdlib.h>
369 int g (int *i) @{ return ((abs)(++*i)); @}
371 #undef abs
372 int h (int *i) @{ return (abs (++*i)); @}
373 @end smallexample
375 Since macro definitions that double for a function behave in
376 exactly the same way as the actual function version, there is usually no
377 need for any of these methods.  In fact, removing macro definitions usually
378 just makes your program slower.
381 @node Reserved Names, Feature Test Macros, Macro Definitions, Using the Library
382 @subsection Reserved Names
383 @cindex reserved names
384 @cindex name space
386 The names of all library types, macros, variables and functions that
387 come from the ANSI C standard are reserved unconditionally; your program
388 @strong{may not} redefine these names.  All other library names are
389 reserved if your program explicitly includes the header file that
390 defines or declares them.  There are several reasons for these
391 restrictions:
393 @itemize @bullet
394 @item
395 Other people reading your code could get very confused if you were using
396 a function named @code{exit} to do something completely different from
397 what the standard @code{exit} function does, for example.  Preventing
398 this situation helps to make your programs easier to understand and
399 contributes to modularity and maintainability.
401 @item
402 It avoids the possibility of a user accidentally redefining a library
403 function that is called by other library functions.  If redefinition
404 were allowed, those other functions would not work properly.
406 @item
407 It allows the compiler to do whatever special optimizations it pleases
408 on calls to these functions, without the possibility that they may have
409 been redefined by the user.  Some library facilities, such as those for
410 dealing with variadic arguments (@pxref{Variadic Functions})
411 and non-local exits (@pxref{Non-Local Exits}), actually require a
412 considerable amount of cooperation on the part of the C compiler, and
413 implementationally it might be easier for the compiler to treat these as
414 built-in parts of the language.
415 @end itemize
417 In addition to the names documented in this manual, reserved names
418 include all external identifiers (global functions and variables) that
419 begin with an underscore (@samp{_}) and all identifiers regardless of
420 use that begin with either two underscores or an underscore followed by
421 a capital letter are reserved names.  This is so that the library and
422 header files can define functions, variables, and macros for internal
423 purposes without risk of conflict with names in user programs.
425 Some additional classes of identifier names are reserved for future
426 extensions to the C language or the POSIX.1 environment.  While using these
427 names for your own purposes right now might not cause a problem, they do
428 raise the possibility of conflict with future versions of the C
429 or POSIX standards, so you should avoid these names.
431 @itemize @bullet
432 @item
433 Names beginning with a capital @samp{E} followed a digit or uppercase
434 letter may be used for additional error code names.  @xref{Error
435 Reporting}.
437 @item
438 Names that begin with either @samp{is} or @samp{to} followed by a
439 lowercase letter may be used for additional character testing and
440 conversion functions.  @xref{Character Handling}.
442 @item
443 Names that begin with @samp{LC_} followed by an uppercase letter may be
444 used for additional macros specifying locale attributes.
445 @xref{Locales}.
447 @item
448 Names of all existing mathematics functions (@pxref{Mathematics})
449 suffixed with @samp{f} or @samp{l} are reserved for corresponding
450 functions that operate on @code{float} and @code{long double} arguments,
451 respectively.
453 @item
454 Names that begin with @samp{SIG} followed by an uppercase letter are
455 reserved for additional signal names.  @xref{Standard Signals}.
457 @item
458 Names that begin with @samp{SIG_} followed by an uppercase letter are
459 reserved for additional signal actions.  @xref{Basic Signal Handling}.
461 @item
462 Names beginning with @samp{str}, @samp{mem}, or @samp{wcs} followed by a
463 lowercase letter are reserved for additional string and array functions.
464 @xref{String and Array Utilities}.
466 @item
467 Names that end with @samp{_t} are reserved for additional type names.
468 @end itemize
470 In addition, some individual header files reserve names beyond
471 those that they actually define.  You only need to worry about these
472 restrictions if your program includes that particular header file.
474 @itemize @bullet
475 @item
476 The header file @file{dirent.h} reserves names prefixed with
477 @samp{d_}.
478 @pindex dirent.h
480 @item
481 The header file @file{fcntl.h} reserves names prefixed with
482 @samp{l_}, @samp{F_}, @samp{O_}, and @samp{S_}.
483 @pindex fcntl.h
485 @item
486 The header file @file{grp.h} reserves names prefixed with @samp{gr_}.
487 @pindex grp.h
489 @item
490 The header file @file{limits.h} reserves names suffixed with @samp{_MAX}.
491 @pindex limits.h
493 @item
494 The header file @file{pwd.h} reserves names prefixed with @samp{pw_}.
495 @pindex pwd.h
497 @item
498 The header file @file{signal.h} reserves names prefixed with @samp{sa_}
499 and @samp{SA_}.
500 @pindex signal.h
502 @item
503 The header file @file{sys/stat.h} reserves names prefixed with @samp{st_}
504 and @samp{S_}.
505 @pindex sys/stat.h
507 @item
508 The header file @file{sys/times.h} reserves names prefixed with @samp{tms_}.
509 @pindex sys/times.h
511 @item
512 The header file @file{termios.h} reserves names prefixed with @samp{c_},
513 @samp{V}, @samp{I}, @samp{O}, and @samp{TC}; and names prefixed with
514 @samp{B} followed by a digit.
515 @pindex termios.h
516 @end itemize
518 @comment Include the section on Creature Nest Macros.
519 @comment It is in a separate file so it can be formatted into ../NOTES.
520 @include creature.texi
522 @node Roadmap to the Manual,  , Using the Library, Introduction
523 @section Roadmap to the Manual
525 Here is an overview of the contents of the remaining chapters of
526 this manual.
528 @itemize @bullet
529 @item
530 @ref{Error Reporting}, describes how errors detected by the library
531 are reported.
533 @item
534 @ref{Language Features}, contains information about library support for
535 standard parts of the C language, including things like the @code{sizeof}
536 operator and the symbolic constant @code{NULL}, how to write functions
537 accepting variable numbers of arguments, and constants describing the
538 ranges and other properties of the numerical types.  There is also a simple
539 debugging mechanism which allows you to put assertions in your code, and
540 have diagnostic messages printed if the tests fail.
542 @item
543 @ref{Memory Allocation}, describes the GNU library's facilities for
544 dynamic allocation of storage.  If you do not know in advance how much
545 storage your program needs, you can allocate it dynamically instead,
546 and manipulate it via pointers.
548 @item
549 @ref{Character Handling}, contains information about character
550 classification functions (such as @code{isspace}) and functions for
551 performing case conversion.
553 @item
554 @ref{String and Array Utilities}, has descriptions of functions for
555 manipulating strings (null-terminated character arrays) and general
556 byte arrays, including operations such as copying and comparison.
558 @item
559 @ref{I/O Overview}, gives an overall look at the input and output
560 facilities in the library, and contains information about basic concepts
561 such as file names.
563 @item
564 @ref{I/O on Streams}, describes I/O operations involving streams (or
565 @w{@code{FILE *}} objects).  These are the normal C library functions
566 from @file{stdio.h}.
568 @item
569 @ref{Low-Level I/O}, contains information about I/O operations
570 on file descriptors.  File descriptors are a lower-level mechanism
571 specific to the Unix family of operating systems.
573 @item
574 @ref{File System Interface}, has descriptions of operations on entire
575 files, such as functions for deleting and renaming them and for creating
576 new directories.  This chapter also contains information about how you
577 can access the attributes of a file, such as its owner and file protection
578 modes.
580 @item
581 @ref{Pipes and FIFOs}, contains information about simple interprocess
582 communication mechanisms.  Pipes allow communication between two related
583 processes (such as between a parent and child), while FIFOs allow
584 communication between processes sharing a common file system on the same
585 machine.
587 @item
588 @ref{Sockets}, describes a more complicated interprocess communication
589 mechanism that allows processes running on different machines to
590 communicate over a network.  This chapter also contains information about
591 Internet host addressing and how to use the system network databases.
593 @item
594 @ref{Low-Level Terminal Interface}, describes how you can change the
595 attributes of a terminal device.  If you want to disable echo of
596 characters typed by the user, for example, read this chapter.
598 @item
599 @ref{Mathematics}, contains information about the math library
600 functions.  These include things like random-number generators and
601 remainder functions on integers as well as the usual trigonometric and
602 exponential functions on floating-point numbers.
604 @item
605 @ref{Arithmetic,, Low-Level Arithmetic Functions}, describes functions
606 for simple arithmetic, analysis of floating-point values, and reading
607 numbers from strings.
609 @item
610 @ref{Searching and Sorting}, contains information about functions
611 for searching and sorting arrays.  You can use these functions on any
612 kind of array by providing an appropriate comparison function.
614 @item
615 @ref{Pattern Matching}, presents functions for matching regular expressions
616 and shell file name patterns, and for expanding words as the shell does.
618 @item
619 @ref{Date and Time}, describes functions for measuring both calendar time
620 and CPU time, as well as functions for setting alarms and timers.
622 @item
623 @ref{Extended Characters}, contains information about manipulating
624 characters and strings using character sets larger than will fit in
625 the usual @code{char} data type.
627 @item
628 @ref{Locales}, describes how selecting a particular country
629 or language affects the behavior of the library.  For example, the locale
630 affects collation sequences for strings and how monetary values are
631 formatted.
633 @item
634 @ref{Non-Local Exits}, contains descriptions of the @code{setjmp} and
635 @code{longjmp} functions.  These functions provide a facility for
636 @code{goto}-like jumps which can jump from one function to another.
638 @item
639 @ref{Signal Handling}, tells you all about signals---what they are,
640 how to establish a handler that is called when a particular kind of
641 signal is delivered, and how to prevent signals from arriving during
642 critical sections of your program.
644 @item
645 @ref{Process Startup}, tells how your programs can access their
646 command-line arguments and environment variables.
648 @item
649 @ref{Processes}, contains information about how to start new processes
650 and run programs.
652 @item
653 @ref{Job Control}, describes functions for manipulating process groups
654 and the controlling terminal.  This material is probably only of
655 interest if you are writing a shell or other program which handles job
656 control specially.
658 @item
659 @ref{Name Service Switch}, describes the services which are available
660 for looking up names in the system databases, how to determine which
661 service is used for which database, and how these services are
662 implemented so that contributors can design their own services.
664 @item
665 @ref{User Database}, and @ref{Group Database}, tell you how to access
666 the system user and group databases.
668 @item
669 @ref{System Information}, describes functions for getting information
670 about the hardware and software configuration your program is executing
671 under.
673 @item
674 @ref{System Configuration}, tells you how you can get information about
675 various operating system limits.  Most of these parameters are provided for
676 compatibility with POSIX.
678 @item
679 @ref{Library Summary}, gives a summary of all the functions, variables, and
680 macros in the library, with complete data types and function prototypes,
681 and says what standard or system each is derived from.
683 @item
684 @ref{Maintenance}, explains how to build and install the GNU C library on
685 your system, how to report any bugs you might find, and how to add new
686 functions or port the library to a new system.
687 @end itemize
689 If you already know the name of the facility you are interested in, you
690 can look it up in @ref{Library Summary}.  This gives you a summary of
691 its syntax and a pointer to where you can find a more detailed
692 description.  This appendix is particularly useful if you just want to
693 verify the order and type of arguments to a function, for example.  It
694 also tells you what standard or system each function, variable, or macro
695 is derived from.