Merge from mainline.
[official-gcc.git] / libiberty / functions.texi
blobfa92d702d79e559b2a273fd0cbdb9add4828da23
1 @c Automatically generated from *.c and others (the comments before
2 @c each entry tell you which file and where in that file).  DO NOT EDIT!
3 @c Edit the *.c files, configure with --enable-maintainer-mode,
4 @c and let gather-docs build you a new copy.
6 @c safe-ctype.c:25
7 @defvr Extension HOST_CHARSET
8 This macro indicates the basic character set and encoding used by the
9 host: more precisely, the encoding used for character constants in
10 preprocessor @samp{#if} statements (the C "execution character set").
11 It is defined by @file{safe-ctype.h}, and will be an integer constant
12 with one of the following values:
14 @ftable @code
15 @item HOST_CHARSET_UNKNOWN
16 The host character set is unknown - that is, not one of the next two
17 possibilities.
19 @item HOST_CHARSET_ASCII
20 The host character set is ASCII.
22 @item HOST_CHARSET_EBCDIC
23 The host character set is some variant of EBCDIC.  (Only one of the
24 nineteen EBCDIC varying characters is tested; exercise caution.)
25 @end ftable
26 @end defvr
28 @c alloca.c:26
29 @deftypefn Replacement void* alloca (size_t @var{size})
31 This function allocates memory which will be automatically reclaimed
32 after the procedure exits.  The @libib{} implementation does not free
33 the memory immediately but will do so eventually during subsequent
34 calls to this function.  Memory is allocated using @code{xmalloc} under
35 normal circumstances.
37 The header file @file{alloca-conf.h} can be used in conjunction with the
38 GNU Autoconf test @code{AC_FUNC_ALLOCA} to test for and properly make
39 available this function.  The @code{AC_FUNC_ALLOCA} test requires that
40 client code use a block of preprocessor code to be safe (see the Autoconf
41 manual for more); this header incorporates that logic and more, including
42 the possibility of a GCC built-in function.
44 @end deftypefn
46 @c asprintf.c:32
47 @deftypefn Extension int asprintf (char **@var{resptr}, const char *@var{format}, ...)
49 Like @code{sprintf}, but instead of passing a pointer to a buffer, you
50 pass a pointer to a pointer.  This function will compute the size of
51 the buffer needed, allocate memory with @code{malloc}, and store a
52 pointer to the allocated memory in @code{*@var{resptr}}.  The value
53 returned is the same as @code{sprintf} would return.  If memory could
54 not be allocated, minus one is returned and @code{NULL} is stored in
55 @code{*@var{resptr}}.
57 @end deftypefn
59 @c atexit.c:6
60 @deftypefn Supplemental int atexit (void (*@var{f})())
62 Causes function @var{f} to be called at exit.  Returns 0.
64 @end deftypefn
66 @c basename.c:6
67 @deftypefn Supplemental char* basename (const char *@var{name})
69 Returns a pointer to the last component of pathname @var{name}.
70 Behavior is undefined if the pathname ends in a directory separator.
72 @end deftypefn
74 @c bcmp.c:6
75 @deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
77 Compares the first @var{count} bytes of two areas of memory.  Returns
78 zero if they are the same, nonzero otherwise.  Returns zero if
79 @var{count} is zero.  A nonzero result only indicates a difference,
80 it does not indicate any sorting order (say, by having a positive
81 result mean @var{x} sorts before @var{y}).
83 @end deftypefn
85 @c bcopy.c:3
86 @deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
88 Copies @var{length} bytes from memory region @var{in} to region
89 @var{out}.  The use of @code{bcopy} is deprecated in new programs.
91 @end deftypefn
93 @c bsearch.c:33
94 @deftypefn Supplemental void* bsearch (const void *@var{key}, const void *@var{base}, size_t @var{nmemb}, size_t @var{size}, int (*@var{compar})(const void *, const void *))
96 Performs a search over an array of @var{nmemb} elements pointed to by
97 @var{base} for a member that matches the object pointed to by @var{key}.
98 The size of each member is specified by @var{size}.  The array contents
99 should be sorted in ascending order according to the @var{compar}
100 comparison function.  This routine should take two arguments pointing to
101 the @var{key} and to an array member, in that order, and should return an
102 integer less than, equal to, or greater than zero if the @var{key} object
103 is respectively less than, matching, or greater than the array member.
105 @end deftypefn
107 @c argv.c:124
108 @deftypefn Extension char** buildargv (char *@var{sp})
110 Given a pointer to a string, parse the string extracting fields
111 separated by whitespace and optionally enclosed within either single
112 or double quotes (which are stripped off), and build a vector of
113 pointers to copies of the string for each field.  The input string
114 remains unchanged.  The last element of the vector is followed by a
115 @code{NULL} element.
117 All of the memory for the pointer array and copies of the string
118 is obtained from @code{malloc}.  All of the memory can be returned to the
119 system with the single function call @code{freeargv}, which takes the
120 returned result of @code{buildargv}, as it's argument.
122 Returns a pointer to the argument vector if successful.  Returns
123 @code{NULL} if @var{sp} is @code{NULL} or if there is insufficient
124 memory to complete building the argument vector.
126 If the input is a null string (as opposed to a @code{NULL} pointer),
127 then buildarg returns an argument vector that has one arg, a null
128 string.
130 @end deftypefn
132 @c bzero.c:6
133 @deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
135 Zeros @var{count} bytes starting at @var{mem}.  Use of this function
136 is deprecated in favor of @code{memset}.
138 @end deftypefn
140 @c calloc.c:6
141 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
143 Uses @code{malloc} to allocate storage for @var{nelem} objects of
144 @var{elsize} bytes each, then zeros the memory.
146 @end deftypefn
148 @c choose-temp.c:42
149 @deftypefn Extension char* choose_temp_base (void)
151 Return a prefix for temporary file names or @code{NULL} if unable to
152 find one.  The current directory is chosen if all else fails so the
153 program is exited if a temporary directory can't be found (@code{mktemp}
154 fails).  The buffer for the result is obtained with @code{xmalloc}.
156 This function is provided for backwards compatability only.  Its use is
157 not recommended.
159 @end deftypefn
161 @c make-temp-file.c:87
162 @deftypefn Replacement char* choose_tmpdir ()
164 Returns a pointer to a directory path suitable for creating temporary
165 files in.
167 @end deftypefn
169 @c clock.c:27
170 @deftypefn Supplemental long clock (void)
172 Returns an approximation of the CPU time used by the process as a
173 @code{clock_t}; divide this number by @samp{CLOCKS_PER_SEC} to get the
174 number of seconds used.
176 @end deftypefn
178 @c concat.c:24
179 @deftypefn Extension char* concat (const char *@var{s1}, const char *@var{s2}, @dots{}, @code{NULL})
181 Concatenate zero or more of strings and return the result in freshly
182 @code{xmalloc}ed memory.  Returns @code{NULL} if insufficient memory is
183 available.  The argument list is terminated by the first @code{NULL}
184 pointer encountered.  Pointers to empty strings are ignored.
186 @end deftypefn
188 @c argv.c:52
189 @deftypefn Extension char** dupargv (char **@var{vector})
191 Duplicate an argument vector.  Simply scans through @var{vector},
192 duplicating each argument until the terminating @code{NULL} is found.
193 Returns a pointer to the argument vector if successful.  Returns
194 @code{NULL} if there is insufficient memory to complete building the
195 argument vector.
197 @end deftypefn
199 @c strerror.c:567
200 @deftypefn Extension int errno_max (void)
202 Returns the maximum @code{errno} value for which a corresponding
203 symbolic name or message is available.  Note that in the case where we
204 use the @code{sys_errlist} supplied by the system, it is possible for
205 there to be more symbolic names than messages, or vice versa.  In
206 fact, the manual page for @code{perror(3C)} explicitly warns that one
207 should check the size of the table (@code{sys_nerr}) before indexing
208 it, since new error codes may be added to the system before they are
209 added to the table.  Thus @code{sys_nerr} might be smaller than value
210 implied by the largest @code{errno} value defined in @code{<errno.h>}.
212 We return the maximum value that can be used to obtain a meaningful
213 symbolic name or message.
215 @end deftypefn
217 @c argv.c:293
218 @deftypefn Extension void expandargv (int *@var{argcp}, char ***@var{argvp})
220 The @var{argcp} and @code{argvp} arguments are pointers to the usual
221 @code{argc} and @code{argv} arguments to @code{main}.  This function
222 looks for arguments that begin with the character @samp{@@}.  Any such
223 arguments are interpreted as ``response files''.  The contents of the
224 response file are interpreted as additional command line options.  In
225 particular, the file is separated into whitespace-separated strings;
226 each such string is taken as a command-line option.  The new options
227 are inserted in place of the option naming the response file, and
228 @code{*argcp} and @code{*argvp} will be updated.  If the value of
229 @code{*argvp} is modified by this function, then the new value has
230 been dynamically allocated and can be deallocated by the caller with
231 @code{freeargv}.  However, most callers will simply call
232 @code{expandargv} near the beginning of @code{main} and allow the
233 operating system to free the memory when the program exits.
235 @end deftypefn
237 @c fdmatch.c:23
238 @deftypefn Extension int fdmatch (int @var{fd1}, int @var{fd2})
240 Check to see if two open file descriptors refer to the same file.
241 This is useful, for example, when we have an open file descriptor for
242 an unnamed file, and the name of a file that we believe to correspond
243 to that fd.  This can happen when we are exec'd with an already open
244 file (@code{stdout} for example) or from the SVR4 @file{/proc} calls
245 that return open file descriptors for mapped address spaces.  All we
246 have to do is open the file by name and check the two file descriptors
247 for a match, which is done by comparing major and minor device numbers
248 and inode numbers.
250 @end deftypefn
252 @c fopen_unlocked.c:48
253 @deftypefn Extension {FILE *} fdopen_unlocked (int @var{fildes}, const char * @var{mode})
255 Opens and returns a @code{FILE} pointer via @code{fdopen}.  If the
256 operating system supports it, ensure that the stream is setup to avoid
257 any multi-threaded locking.  Otherwise return the @code{FILE} pointer
258 unchanged.
260 @end deftypefn
262 @c ffs.c:3
263 @deftypefn Supplemental int ffs (int @var{valu})
265 Find the first (least significant) bit set in @var{valu}.  Bits are
266 numbered from right to left, starting with bit 1 (corresponding to the
267 value 1).  If @var{valu} is zero, zero is returned.
269 @end deftypefn
271 @c fnmatch.txh:1
272 @deftypefn Replacement int fnmatch (const char *@var{pattern}, const char *@var{string}, int @var{flags})
274 Matches @var{string} against @var{pattern}, returning zero if it
275 matches, @code{FNM_NOMATCH} if not.  @var{pattern} may contain the
276 wildcards @code{?} to match any one character, @code{*} to match any
277 zero or more characters, or a set of alternate characters in square
278 brackets, like @samp{[a-gt8]}, which match one character (@code{a}
279 through @code{g}, or @code{t}, or @code{8}, in this example) if that one
280 character is in the set.  A set may be inverted (i.e., match anything
281 except what's in the set) by giving @code{^} or @code{!} as the first
282 character in the set.  To include those characters in the set, list them
283 as anything other than the first character of the set.  To include a
284 dash in the set, list it last in the set.  A backslash character makes
285 the following character not special, so for example you could match
286 against a literal asterisk with @samp{\*}.  To match a literal
287 backslash, use @samp{\\}.
289 @code{flags} controls various aspects of the matching process, and is a
290 boolean OR of zero or more of the following values (defined in
291 @code{<fnmatch.h>}):
293 @table @code
295 @item FNM_PATHNAME
296 @itemx FNM_FILE_NAME
297 @var{string} is assumed to be a path name.  No wildcard will ever match
298 @code{/}.
300 @item FNM_NOESCAPE
301 Do not interpret backslashes as quoting the following special character.
303 @item FNM_PERIOD
304 A leading period (at the beginning of @var{string}, or if
305 @code{FNM_PATHNAME} after a slash) is not matched by @code{*} or
306 @code{?} but must be matched explicitly.
308 @item FNM_LEADING_DIR
309 Means that @var{string} also matches @var{pattern} if some initial part
310 of @var{string} matches, and is followed by @code{/} and zero or more
311 characters.  For example, @samp{foo*} would match either @samp{foobar}
312 or @samp{foobar/grill}.
314 @item FNM_CASEFOLD
315 Ignores case when performing the comparison.
317 @end table
319 @end deftypefn
321 @c fopen_unlocked.c:39
322 @deftypefn Extension {FILE *} fopen_unlocked (const char *@var{path}, const char * @var{mode})
324 Opens and returns a @code{FILE} pointer via @code{fopen}.  If the
325 operating system supports it, ensure that the stream is setup to avoid
326 any multi-threaded locking.  Otherwise return the @code{FILE} pointer
327 unchanged.
329 @end deftypefn
331 @c argv.c:97
332 @deftypefn Extension void freeargv (char **@var{vector})
334 Free an argument vector that was built using @code{buildargv}.  Simply
335 scans through @var{vector}, freeing the memory for each argument until
336 the terminating @code{NULL} is found, and then frees @var{vector}
337 itself.
339 @end deftypefn
341 @c fopen_unlocked.c:57
342 @deftypefn Extension {FILE *} freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream})
344 Opens and returns a @code{FILE} pointer via @code{freopen}.  If the
345 operating system supports it, ensure that the stream is setup to avoid
346 any multi-threaded locking.  Otherwise return the @code{FILE} pointer
347 unchanged.
349 @end deftypefn
351 @c getruntime.c:82
352 @deftypefn Replacement long get_run_time (void)
354 Returns the time used so far, in microseconds.  If possible, this is
355 the time used by this process, else it is the elapsed time since the
356 process started.
358 @end deftypefn
360 @c getcwd.c:6
361 @deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len})
363 Copy the absolute pathname for the current working directory into
364 @var{pathname}, which is assumed to point to a buffer of at least
365 @var{len} bytes, and return a pointer to the buffer.  If the current
366 directory's path doesn't fit in @var{len} characters, the result is
367 @code{NULL} and @code{errno} is set.  If @var{pathname} is a null pointer,
368 @code{getcwd} will obtain @var{len} bytes of space using
369 @code{malloc}.
371 @end deftypefn
373 @c getpagesize.c:5
374 @deftypefn Supplemental int getpagesize (void)
376 Returns the number of bytes in a page of memory.  This is the
377 granularity of many of the system memory management routines.  No
378 guarantee is made as to whether or not it is the same as the basic
379 memory management hardware page size.
381 @end deftypefn
383 @c getpwd.c:5
384 @deftypefn Supplemental char* getpwd (void)
386 Returns the current working directory.  This implementation caches the
387 result on the assumption that the process will not call @code{chdir}
388 between calls to @code{getpwd}.
390 @end deftypefn
392 @c gettimeofday.c:12
393 @deftypefn Supplemental int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
395 Writes the current time to @var{tp}.  This implementation requires
396 that @var{tz} be NULL.  Returns 0 on success, -1 on failure.
398 @end deftypefn
400 @c hex.c:33
401 @deftypefn Extension void hex_init (void)
403 Initializes the array mapping the current character set to
404 corresponding hex values.  This function must be called before any
405 call to @code{hex_p} or @code{hex_value}.  If you fail to call it, a
406 default ASCII-based table will normally be used on ASCII systems.
408 @end deftypefn
410 @c hex.c:42
411 @deftypefn Extension int hex_p (int @var{c})
413 Evaluates to non-zero if the given character is a valid hex character,
414 or zero if it is not.  Note that the value you pass will be cast to
415 @code{unsigned char} within the macro.
417 @end deftypefn
419 @c hex.c:50
420 @deftypefn Extension {unsigned int} hex_value (int @var{c})
422 Returns the numeric equivalent of the given character when interpreted
423 as a hexidecimal digit.  The result is undefined if you pass an
424 invalid hex digit.  Note that the value you pass will be cast to
425 @code{unsigned char} within the macro.
427 The @code{hex_value} macro returns @code{unsigned int}, rather than
428 signed @code{int}, to make it easier to use in parsing addresses from
429 hex dump files: a signed @code{int} would be sign-extended when
430 converted to a wider unsigned type --- like @code{bfd_vma}, on some
431 systems.
433 @end deftypefn
435 @c index.c:5
436 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
438 Returns a pointer to the first occurrence of the character @var{c} in
439 the string @var{s}, or @code{NULL} if not found.  The use of @code{index} is
440 deprecated in new programs in favor of @code{strchr}.
442 @end deftypefn
444 @c insque.c:6
445 @deftypefn Supplemental void insque (struct qelem *@var{elem}, struct qelem *@var{pred})
446 @deftypefnx Supplemental void remque (struct qelem *@var{elem})
448 Routines to manipulate queues built from doubly linked lists.  The
449 @code{insque} routine inserts @var{elem} in the queue immediately
450 after @var{pred}.  The @code{remque} routine removes @var{elem} from
451 its containing queue.  These routines expect to be passed pointers to
452 structures which have as their first members a forward pointer and a
453 back pointer, like this prototype (although no prototype is provided):
455 @example
456 struct qelem @{
457   struct qelem *q_forw;
458   struct qelem *q_back;
459   char q_data[];
461 @end example
463 @end deftypefn
465 @c safe-ctype.c:46
466 @deffn  Extension ISALPHA  (@var{c})
467 @deffnx Extension ISALNUM  (@var{c})
468 @deffnx Extension ISBLANK  (@var{c})
469 @deffnx Extension ISCNTRL  (@var{c})
470 @deffnx Extension ISDIGIT  (@var{c})
471 @deffnx Extension ISGRAPH  (@var{c})
472 @deffnx Extension ISLOWER  (@var{c})
473 @deffnx Extension ISPRINT  (@var{c})
474 @deffnx Extension ISPUNCT  (@var{c})
475 @deffnx Extension ISSPACE  (@var{c})
476 @deffnx Extension ISUPPER  (@var{c})
477 @deffnx Extension ISXDIGIT (@var{c})
479 These twelve macros are defined by @file{safe-ctype.h}.  Each has the
480 same meaning as the corresponding macro (with name in lowercase)
481 defined by the standard header @file{ctype.h}.  For example,
482 @code{ISALPHA} returns true for alphabetic characters and false for
483 others.  However, there are two differences between these macros and
484 those provided by @file{ctype.h}:
486 @itemize @bullet
487 @item These macros are guaranteed to have well-defined behavior for all 
488 values representable by @code{signed char} and @code{unsigned char}, and
489 for @code{EOF}.
491 @item These macros ignore the current locale; they are true for these
492 fixed sets of characters:
493 @multitable {@code{XDIGIT}} {yada yada yada yada yada yada yada yada}
494 @item @code{ALPHA}  @tab @kbd{A-Za-z}
495 @item @code{ALNUM}  @tab @kbd{A-Za-z0-9}
496 @item @code{BLANK}  @tab @kbd{space tab}
497 @item @code{CNTRL}  @tab @code{!PRINT}
498 @item @code{DIGIT}  @tab @kbd{0-9}
499 @item @code{GRAPH}  @tab @code{ALNUM || PUNCT}
500 @item @code{LOWER}  @tab @kbd{a-z}
501 @item @code{PRINT}  @tab @code{GRAPH ||} @kbd{space}
502 @item @code{PUNCT}  @tab @kbd{`~!@@#$%^&*()_-=+[@{]@}\|;:'",<.>/?}
503 @item @code{SPACE}  @tab @kbd{space tab \n \r \f \v}
504 @item @code{UPPER}  @tab @kbd{A-Z}
505 @item @code{XDIGIT} @tab @kbd{0-9A-Fa-f}
506 @end multitable
508 Note that, if the host character set is ASCII or a superset thereof,
509 all these macros will return false for all values of @code{char} outside
510 the range of 7-bit ASCII.  In particular, both ISPRINT and ISCNTRL return
511 false for characters with numeric values from 128 to 255.
512 @end itemize
513 @end deffn
515 @c safe-ctype.c:95
516 @deffn  Extension ISIDNUM         (@var{c})
517 @deffnx Extension ISIDST          (@var{c})
518 @deffnx Extension IS_VSPACE       (@var{c})
519 @deffnx Extension IS_NVSPACE      (@var{c})
520 @deffnx Extension IS_SPACE_OR_NUL (@var{c})
521 @deffnx Extension IS_ISOBASIC     (@var{c})
522 These six macros are defined by @file{safe-ctype.h} and provide
523 additional character classes which are useful when doing lexical
524 analysis of C or similar languages.  They are true for the following
525 sets of characters:
527 @multitable {@code{SPACE_OR_NUL}} {yada yada yada yada yada yada yada yada}
528 @item @code{IDNUM}        @tab @kbd{A-Za-z0-9_}
529 @item @code{IDST}         @tab @kbd{A-Za-z_}
530 @item @code{VSPACE}       @tab @kbd{\r \n}
531 @item @code{NVSPACE}      @tab @kbd{space tab \f \v \0}
532 @item @code{SPACE_OR_NUL} @tab @code{VSPACE || NVSPACE}
533 @item @code{ISOBASIC}     @tab @code{VSPACE || NVSPACE || PRINT}
534 @end multitable
535 @end deffn
537 @c lbasename.c:23
538 @deftypefn Replacement {const char*} lbasename (const char *@var{name})
540 Given a pointer to a string containing a typical pathname
541 (@samp{/usr/src/cmd/ls/ls.c} for example), returns a pointer to the
542 last component of the pathname (@samp{ls.c} in this case).  The
543 returned pointer is guaranteed to lie within the original
544 string.  This latter fact is not true of many vendor C
545 libraries, which return special strings or modify the passed
546 strings for particular input.
548 In particular, the empty string returns the same empty string,
549 and a path ending in @code{/} returns the empty string after it.
551 @end deftypefn
553 @c lrealpath.c:25
554 @deftypefn Replacement {const char*} lrealpath (const char *@var{name})
556 Given a pointer to a string containing a pathname, returns a canonical
557 version of the filename.  Symlinks will be resolved, and ``.'' and ``..''
558 components will be simplified.  The returned value will be allocated using
559 @code{malloc}, or @code{NULL} will be returned on a memory allocation error.
561 @end deftypefn
563 @c make-relative-prefix.c:24
564 @deftypefn Extension {const char*} make_relative_prefix (const char *@var{progname}, const char *@var{bin_prefix}, const char *@var{prefix})
566 Given three paths @var{progname}, @var{bin_prefix}, @var{prefix},
567 return the path that is in the same position relative to
568 @var{progname}'s directory as @var{prefix} is relative to
569 @var{bin_prefix}.  That is, a string starting with the directory
570 portion of @var{progname}, followed by a relative pathname of the
571 difference between @var{bin_prefix} and @var{prefix}.
573 If @var{progname} does not contain any directory separators,
574 @code{make_relative_prefix} will search @env{PATH} to find a program
575 named @var{progname}.  Also, if @var{progname} is a symbolic link,
576 the symbolic link will be resolved.
578 For example, if @var{bin_prefix} is @code{/alpha/beta/gamma/gcc/delta},
579 @var{prefix} is @code{/alpha/beta/gamma/omega/}, and @var{progname} is
580 @code{/red/green/blue/gcc}, then this function will return
581 @code{/red/green/blue/../../omega/}.
583 The return value is normally allocated via @code{malloc}.  If no
584 relative prefix can be found, return @code{NULL}.
586 @end deftypefn
588 @c make-temp-file.c:137
589 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
591 Return a temporary file name (as a string) or @code{NULL} if unable to
592 create one.  @var{suffix} is a suffix to append to the file name.  The
593 string is @code{malloc}ed, and the temporary file has been created.
595 @end deftypefn
597 @c memchr.c:3
598 @deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, size_t @var{n})
600 This function searches memory starting at @code{*@var{s}} for the
601 character @var{c}.  The search only ends with the first occurrence of
602 @var{c}, or after @var{length} characters; in particular, a null
603 character does not terminate the search.  If the character @var{c} is
604 found within @var{length} characters of @code{*@var{s}}, a pointer
605 to the character is returned.  If @var{c} is not found, then @code{NULL} is
606 returned.
608 @end deftypefn
610 @c memcmp.c:6
611 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, size_t @var{count})
613 Compares the first @var{count} bytes of two areas of memory.  Returns
614 zero if they are the same, a value less than zero if @var{x} is
615 lexically less than @var{y}, or a value greater than zero if @var{x}
616 is lexically greater than @var{y}.  Note that lexical order is determined
617 as if comparing unsigned char arrays.
619 @end deftypefn
621 @c memcpy.c:6
622 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
624 Copies @var{length} bytes from memory region @var{in} to region
625 @var{out}.  Returns a pointer to @var{out}.
627 @end deftypefn
629 @c memmove.c:6
630 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count})
632 Copies @var{count} bytes from memory area @var{from} to memory area
633 @var{to}, returning a pointer to @var{to}.
635 @end deftypefn
637 @c mempcpy.c:23
638 @deftypefn Supplemental void* mempcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
640 Copies @var{length} bytes from memory region @var{in} to region
641 @var{out}.  Returns a pointer to @var{out} + @var{length}.
643 @end deftypefn
645 @c memset.c:6
646 @deftypefn Supplemental void* memset (void *@var{s}, int @var{c}, size_t @var{count})
648 Sets the first @var{count} bytes of @var{s} to the constant byte
649 @var{c}, returning a pointer to @var{s}.
651 @end deftypefn
653 @c mkstemps.c:54
654 @deftypefn Replacement int mkstemps (char *@var{pattern}, int @var{suffix_len})
656 Generate a unique temporary file name from @var{pattern}.
657 @var{pattern} has the form:
659 @example
660    @var{path}/ccXXXXXX@var{suffix}
661 @end example
663 @var{suffix_len} tells us how long @var{suffix} is (it can be zero
664 length).  The last six characters of @var{pattern} before @var{suffix}
665 must be @samp{XXXXXX}; they are replaced with a string that makes the
666 filename unique.  Returns a file descriptor open on the file for
667 reading and writing.
669 @end deftypefn
671 @c pexecute.txh:231
672 @deftypefn Extension void pex_free (struct pex_obj @var{obj})
674 Clean up and free all data associated with @var{obj}.
676 @end deftypefn
678 @c pexecute.txh:206
679 @deftypefn Extension int pex_get_status (struct pex_obj *@var{obj}, int @var{count}, int *@var{vector})
681 Returns the exit status of all programs run using @var{obj}.
682 @var{count} is the number of results expected.  The results will be
683 placed into @var{vector}.  The results are in the order of the calls
684 to @code{pex_run}.  Returns 0 on error, 1 on success.
686 @end deftypefn
688 @c pexecute.txh:215
689 @deftypefn Extension int pex_get_times (struct pex_obj *@var{obj}, int @var{count}, struct pex_time *@var{vector})
691 Returns the process execution times of all programs run using
692 @var{obj}.  @var{count} is the number of results expected.  The
693 results will be placed into @var{vector}.  The results are in the
694 order of the calls to @code{pex_run}.  Returns 0 on error, 1 on
695 success.
697 @code{struct pex_time} has the following fields of the type
698 @code{unsigned long}: @code{user_seconds},
699 @code{user_microseconds}, @code{system_seconds},
700 @code{system_microseconds}.  On systems which do not support reporting
701 process times, all the fields will be set to @code{0}.
703 @end deftypefn
705 @c pexecute.txh:2
706 @deftypefn Extension {struct pex_obj *} pex_init (int @var{flags}, const char *@var{pname}, const char *@var{tempbase})
708 Prepare to execute one or more programs, with standard output of each
709 program fed to standard input of the next.  This is a system
710 independent interface to execute a pipeline.
712 @var{flags} is a bitwise combination of the following:
714 @table @code
716 @vindex PEX_RECORD_TIMES
717 @item PEX_RECORD_TIMES
718 Record subprocess times if possible.
720 @vindex PEX_USE_PIPES
721 @item PEX_USE_PIPES
722 Use pipes for communication between processes, if possible.
724 @vindex PEX_SAVE_TEMPS
725 @item PEX_SAVE_TEMPS
726 Don't delete temporary files used for communication between
727 processes.
729 @end table
731 @var{pname} is the name of program to be executed, used in error
732 messages.  @var{tempbase} is a base name to use for any required
733 temporary files; it may be @code{NULL} to use a randomly chosen name.
735 @end deftypefn
737 @c pexecute.txh:133
738 @deftypefn Extension {FILE *} pex_input_file (struct pex_obj *@var{obj}, int @var{flags}, const char *@var{in_name})
740 Return a stream for a temporary file to pass to the first program in
741 the pipeline as input.
743 The name of the input file is chosen according to the same rules
744 @code{pex_run} uses to choose output file names, based on
745 @var{in_name}, @var{obj} and the @code{PEX_SUFFIX} bit in @var{flags}.
747 Don't call @code{fclose} on the returned stream; the first call to
748 @code{pex_run} closes it automatically.
750 If @var{flags} includes @code{PEX_BINARY_OUTPUT}, open the stream in
751 binary mode; otherwise, open it in the default mode.  Including
752 @code{PEX_BINARY_OUTPUT} in @var{flags} has no effect on Unix.
753 @end deftypefn
755 @c pexecute.txh:150
756 @deftypefn Extension {FILE *} pex_input_pipe (struct pex_obj *@var{obj}, int @var{binary})
758 Return a stream @var{fp} for a pipe connected to the standard input of
759 the first program in the pipeline; @var{fp} is opened for writing.
760 You must have passed @code{PEX_USE_PIPES} to the @code{pex_init} call
761 that returned @var{obj}.
763 You must close @var{fp} using @code{fclose} yourself when you have
764 finished writing data to the pipeline.
766 The file descriptor underlying @var{fp} is marked not to be inherited
767 by child processes.
769 On systems that do not support pipes, this function returns
770 @code{NULL}, and sets @code{errno} to @code{EINVAL}.  If you would
771 like to write code that is portable to all systems the @code{pex}
772 functions support, consider using @code{pex_input_file} instead.
774 There are two opportunities for deadlock using
775 @code{pex_input_pipe}:
777 @itemize @bullet
778 @item
779 Most systems' pipes can buffer only a fixed amount of data; a process
780 that writes to a full pipe blocks.  Thus, if you write to @file{fp}
781 before starting the first process, you run the risk of blocking when
782 there is no child process yet to read the data and allow you to
783 continue.  @code{pex_input_pipe} makes no promises about the
784 size of the pipe's buffer, so if you need to write any data at all
785 before starting the first process in the pipeline, consider using
786 @code{pex_input_file} instead.
788 @item
789 Using @code{pex_input_pipe} and @code{pex_read_output} together
790 may also cause deadlock.  If the output pipe fills up, so that each
791 program in the pipeline is waiting for the next to read more data, and
792 you fill the input pipe by writing more data to @var{fp}, then there
793 is no way to make progress: the only process that could read data from
794 the output pipe is you, but you are blocked on the input pipe.
796 @end itemize
798 @end deftypefn
800 @c pexecute.txh:237
801 @deftypefn Extension {const char *} pex_one (int @var{flags}, const char *@var{executable}, char * const *@var{argv}, const char *@var{pname}, const char *@var{outname}, const char *@var{errname}, int *@var{status}, int *@var{err})
803 An interface to permit the easy execution of a
804 single program.  The return value and most of the parameters are as
805 for a call to @code{pex_run}.  @var{flags} is restricted to a
806 combination of @code{PEX_SEARCH}, @code{PEX_STDERR_TO_STDOUT}, and
807 @code{PEX_BINARY_OUTPUT}.  @var{outname} is interpreted as if
808 @code{PEX_LAST} were set.  On a successful return, @code{*@var{status}} will
809 be set to the exit status of the program.
811 @end deftypefn
813 @c pexecute.txh:194
814 @deftypefn Extension {FILE *} pex_read_output (struct pex_obj *@var{obj}, int @var{binary})
816 Returns a @code{FILE} pointer which may be used to read the standard
817 output of the last program in the pipeline.  When this is used,
818 @code{PEX_LAST} should not be used in a call to @code{pex_run}.  After
819 this is called, @code{pex_run} may no longer be called with the same
820 @var{obj}.  @var{binary} should be non-zero if the file should be
821 opened in binary mode.  Don't call @code{fclose} on the returned file;
822 it will be closed by @code{pex_free}.
824 @end deftypefn
826 @c pexecute.txh:33
827 @deftypefn Extension {const char *} pex_run (struct pex_obj *@var{obj}, int @var{flags}, const char *@var{executable}, char * const *@var{argv}, const char *@var{outname}, const char *@var{errname}, int *@var{err})
829 Execute one program in a pipeline.  On success this returns
830 @code{NULL}.  On failure it returns an error message, a statically
831 allocated string.
833 @var{obj} is returned by a previous call to @code{pex_init}.
835 @var{flags} is a bitwise combination of the following:
837 @table @code
839 @vindex PEX_LAST
840 @item PEX_LAST
841 This must be set on the last program in the pipeline.  In particular,
842 it should be set when executing a single program.  The standard output
843 of the program will be sent to @var{outname}, or, if @var{outname} is
844 @code{NULL}, to the standard output of the calling program.  Do @emph{not}
845 set this bit if you want to call @code{pex_read_output}
846 (described below).  After a call to @code{pex_run} with this bit set,
847 @var{pex_run} may no longer be called with the same @var{obj}.
849 @vindex PEX_SEARCH
850 @item PEX_SEARCH
851 Search for the program using the user's executable search path.
853 @vindex PEX_SUFFIX
854 @item PEX_SUFFIX
855 @var{outname} is a suffix.  See the description of @var{outname},
856 below.
858 @vindex PEX_STDERR_TO_STDOUT
859 @item PEX_STDERR_TO_STDOUT
860 Send the program's standard error to standard output, if possible.
862 @vindex PEX_BINARY_INPUT
863 @vindex PEX_BINARY_OUTPUT
864 @item PEX_BINARY_INPUT
865 @itemx PEX_BINARY_OUTPUT
866 The standard input (output) of the program should be read (written) in
867 binary mode rather than text mode.  These flags are ignored on systems
868 which do not distinguish binary mode and text mode, such as Unix.  For
869 proper behavior these flags should match appropriately---a call to
870 @code{pex_run} using @code{PEX_BINARY_OUTPUT} should be followed by a
871 call using @code{PEX_BINARY_INPUT}.
872 @end table
874 @var{executable} is the program to execute.  @var{argv} is the set of
875 arguments to pass to the program; normally @code{@var{argv}[0]} will
876 be a copy of @var{executable}.
878 @var{outname} is used to set the name of the file to use for standard
879 output.  There are two cases in which no output file will be used:
881 @enumerate
882 @item
883 if @code{PEX_LAST} is not set in @var{flags}, and @code{PEX_USE_PIPES}
884 was set in the call to @code{pex_init}, and the system supports pipes
886 @item
887 if @code{PEX_LAST} is set in @var{flags}, and @var{outname} is
888 @code{NULL}
889 @end enumerate
891 @noindent
892 Otherwise the code will use a file to hold standard
893 output.  If @code{PEX_LAST} is not set, this file is considered to be
894 a temporary file, and it will be removed when no longer needed, unless
895 @code{PEX_SAVE_TEMPS} was set in the call to @code{pex_init}.
897 There are two cases to consider when setting the name of the file to
898 hold standard output.
900 @enumerate
901 @item
902 @code{PEX_SUFFIX} is set in @var{flags}.  In this case
903 @var{outname} may not be @code{NULL}.  If the @var{tempbase} parameter
904 to @code{pex_init} was not @code{NULL}, then the output file name is
905 the concatenation of @var{tempbase} and @var{outname}.  If
906 @var{tempbase} was @code{NULL}, then the output file name is a random
907 file name ending in @var{outname}.
909 @item
910 @code{PEX_SUFFIX} was not set in @var{flags}.  In this
911 case, if @var{outname} is not @code{NULL}, it is used as the output
912 file name.  If @var{outname} is @code{NULL}, and @var{tempbase} was
913 not NULL, the output file name is randomly chosen using
914 @var{tempbase}.  Otherwise the output file name is chosen completely
915 at random.
916 @end enumerate
918 @var{errname} is the file name to use for standard error output.  If
919 it is @code{NULL}, standard error is the same as the caller's.
920 Otherwise, standard error is written to the named file.
922 On an error return, the code sets @code{*@var{err}} to an @code{errno}
923 value, or to 0 if there is no relevant @code{errno}.
925 @end deftypefn
927 @c pexecute.txh:249
928 @deftypefn Extension int pexecute (const char *@var{program}, char * const *@var{argv}, const char *@var{this_pname}, const char *@var{temp_base}, char **@var{errmsg_fmt}, char **@var{errmsg_arg}, int flags)
930 This is the old interface to execute one or more programs.  It is
931 still supported for compatibility purposes, but is no longer
932 documented.
934 @end deftypefn
936 @c strsignal.c:539
937 @deftypefn Supplemental void psignal (unsigned @var{signo}, char *@var{message})
939 Print @var{message} to the standard error, followed by a colon,
940 followed by the description of the signal specified by @var{signo},
941 followed by a newline.
943 @end deftypefn
945 @c putenv.c:21
946 @deftypefn Supplemental int putenv (const char *@var{string})
948 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
949 the environment or remove it.  If @var{string} is of the form
950 @samp{name=value} the string is added; if no @samp{=} is present the
951 name is unset/removed.
953 @end deftypefn
955 @c pexecute.txh:257
956 @deftypefn Extension int pwait (int @var{pid}, int *@var{status}, int @var{flags})
958 Another part of the old execution interface.
960 @end deftypefn
962 @c random.c:39
963 @deftypefn Supplement {long int} random (void)
964 @deftypefnx Supplement void srandom (unsigned int @var{seed})
965 @deftypefnx Supplement void* initstate (unsigned int @var{seed}, void *@var{arg_state}, unsigned long @var{n})
966 @deftypefnx Supplement void* setstate (void *@var{arg_state})
968 Random number functions.  @code{random} returns a random number in the
969 range 0 to @code{LONG_MAX}.  @code{srandom} initializes the random
970 number generator to some starting point determined by @var{seed}
971 (else, the values returned by @code{random} are always the same for each
972 run of the program).  @code{initstate} and @code{setstate} allow fine-grained
973 control over the state of the random number generator.
975 @end deftypefn
977 @c concat.c:173
978 @deftypefn Extension char* reconcat (char *@var{optr}, const char *@var{s1}, @dots{}, @code{NULL})
980 Same as @code{concat}, except that if @var{optr} is not @code{NULL} it
981 is freed after the string is created.  This is intended to be useful
982 when you're extending an existing string or building up a string in a
983 loop:
985 @example
986   str = reconcat (str, "pre-", str, NULL);
987 @end example
989 @end deftypefn
991 @c rename.c:6
992 @deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new})
994 Renames a file from @var{old} to @var{new}.  If @var{new} already
995 exists, it is removed.
997 @end deftypefn
999 @c rindex.c:5
1000 @deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})
1002 Returns a pointer to the last occurrence of the character @var{c} in
1003 the string @var{s}, or @code{NULL} if not found.  The use of @code{rindex} is
1004 deprecated in new programs in favor of @code{strrchr}.
1006 @end deftypefn
1008 @c setenv.c:22
1009 @deftypefn Supplemental int setenv (const char *@var{name}, const char *@var{value}, int @var{overwrite})
1010 @deftypefnx Supplemental void unsetenv (const char *@var{name})
1012 @code{setenv} adds @var{name} to the environment with value
1013 @var{value}.  If the name was already present in the environment,
1014 the new value will be stored only if @var{overwrite} is nonzero.
1015 The companion @code{unsetenv} function removes @var{name} from the
1016 environment.  This implementation is not safe for multithreaded code.
1018 @end deftypefn
1020 @c strsignal.c:348
1021 @deftypefn Extension int signo_max (void)
1023 Returns the maximum signal value for which a corresponding symbolic
1024 name or message is available.  Note that in the case where we use the
1025 @code{sys_siglist} supplied by the system, it is possible for there to
1026 be more symbolic names than messages, or vice versa.  In fact, the
1027 manual page for @code{psignal(3b)} explicitly warns that one should
1028 check the size of the table (@code{NSIG}) before indexing it, since
1029 new signal codes may be added to the system before they are added to
1030 the table.  Thus @code{NSIG} might be smaller than value implied by
1031 the largest signo value defined in @code{<signal.h>}.
1033 We return the maximum value that can be used to obtain a meaningful
1034 symbolic name or message.
1036 @end deftypefn
1038 @c sigsetmask.c:8
1039 @deftypefn Supplemental int sigsetmask (int @var{set})
1041 Sets the signal mask to the one provided in @var{set} and returns
1042 the old mask (which, for libiberty's implementation, will always
1043 be the value @code{1}).
1045 @end deftypefn
1047 @c snprintf.c:28
1048 @deftypefn Supplemental int snprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, ...)
1050 This function is similar to sprintf, but it will print at most @var{n}
1051 characters.  On error the return value is -1, otherwise it returns the
1052 number of characters that would have been printed had @var{n} been
1053 sufficiently large, regardless of the actual value of @var{n}.  Note
1054 some pre-C99 system libraries do not implement this correctly so users
1055 cannot generally rely on the return value if the system version of
1056 this function is used.
1058 @end deftypefn
1060 @c spaces.c:22
1061 @deftypefn Extension char* spaces (int @var{count})
1063 Returns a pointer to a memory region filled with the specified
1064 number of spaces and null terminated.  The returned pointer is
1065 valid until at least the next call.
1067 @end deftypefn
1069 @c stpcpy.c:23
1070 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
1072 Copies the string @var{src} into @var{dst}.  Returns a pointer to
1073 @var{dst} + strlen(@var{src}).
1075 @end deftypefn
1077 @c stpncpy.c:23
1078 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, size_t @var{len})
1080 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
1081 and padding with zeros if necessary.  If @var{len} < strlen(@var{src})
1082 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
1083 strlen(@var{src}).
1085 @end deftypefn
1087 @c strcasecmp.c:15
1088 @deftypefn Supplemental int strcasecmp (const char *@var{s1}, const char *@var{s2})
1090 A case-insensitive @code{strcmp}.
1092 @end deftypefn
1094 @c strchr.c:6
1095 @deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
1097 Returns a pointer to the first occurrence of the character @var{c} in
1098 the string @var{s}, or @code{NULL} if not found.  If @var{c} is itself the
1099 null character, the results are undefined.
1101 @end deftypefn
1103 @c strdup.c:3
1104 @deftypefn Supplemental char* strdup (const char *@var{s})
1106 Returns a pointer to a copy of @var{s} in memory obtained from
1107 @code{malloc}, or @code{NULL} if insufficient memory was available.
1109 @end deftypefn
1111 @c strerror.c:670
1112 @deftypefn Replacement {const char*} strerrno (int @var{errnum})
1114 Given an error number returned from a system call (typically returned
1115 in @code{errno}), returns a pointer to a string containing the
1116 symbolic name of that error number, as found in @code{<errno.h>}.
1118 If the supplied error number is within the valid range of indices for
1119 symbolic names, but no name is available for the particular error
1120 number, then returns the string @samp{Error @var{num}}, where @var{num}
1121 is the error number.
1123 If the supplied error number is not within the range of valid
1124 indices, then returns @code{NULL}.
1126 The contents of the location pointed to are only guaranteed to be
1127 valid until the next call to @code{strerrno}.
1129 @end deftypefn
1131 @c strerror.c:603
1132 @deftypefn Supplemental char* strerror (int @var{errnoval})
1134 Maps an @code{errno} number to an error message string, the contents
1135 of which are implementation defined.  On systems which have the
1136 external variables @code{sys_nerr} and @code{sys_errlist}, these
1137 strings will be the same as the ones used by @code{perror}.
1139 If the supplied error number is within the valid range of indices for
1140 the @code{sys_errlist}, but no message is available for the particular
1141 error number, then returns the string @samp{Error @var{num}}, where
1142 @var{num} is the error number.
1144 If the supplied error number is not a valid index into
1145 @code{sys_errlist}, returns @code{NULL}.
1147 The returned string is only guaranteed to be valid only until the
1148 next call to @code{strerror}.
1150 @end deftypefn
1152 @c strncasecmp.c:15
1153 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
1155 A case-insensitive @code{strncmp}.
1157 @end deftypefn
1159 @c strncmp.c:6
1160 @deftypefn Supplemental int strncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n})
1162 Compares the first @var{n} bytes of two strings, returning a value as
1163 @code{strcmp}.
1165 @end deftypefn
1167 @c strndup.c:23
1168 @deftypefn Extension char* strndup (const char *@var{s}, size_t @var{n})
1170 Returns a pointer to a copy of @var{s} with at most @var{n} characters
1171 in memory obtained from @code{malloc}, or @code{NULL} if insufficient
1172 memory was available.  The result is always NUL terminated.
1174 @end deftypefn
1176 @c strrchr.c:6
1177 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
1179 Returns a pointer to the last occurrence of the character @var{c} in
1180 the string @var{s}, or @code{NULL} if not found.  If @var{c} is itself the
1181 null character, the results are undefined.
1183 @end deftypefn
1185 @c strsignal.c:383
1186 @deftypefn Supplemental {const char *} strsignal (int @var{signo})
1188 Maps an signal number to an signal message string, the contents of
1189 which are implementation defined.  On systems which have the external
1190 variable @code{sys_siglist}, these strings will be the same as the
1191 ones used by @code{psignal()}.
1193 If the supplied signal number is within the valid range of indices for
1194 the @code{sys_siglist}, but no message is available for the particular
1195 signal number, then returns the string @samp{Signal @var{num}}, where
1196 @var{num} is the signal number.
1198 If the supplied signal number is not a valid index into
1199 @code{sys_siglist}, returns @code{NULL}.
1201 The returned string is only guaranteed to be valid only until the next
1202 call to @code{strsignal}.
1204 @end deftypefn
1206 @c strsignal.c:446
1207 @deftypefn Extension {const char*} strsigno (int @var{signo})
1209 Given an signal number, returns a pointer to a string containing the
1210 symbolic name of that signal number, as found in @code{<signal.h>}.
1212 If the supplied signal number is within the valid range of indices for
1213 symbolic names, but no name is available for the particular signal
1214 number, then returns the string @samp{Signal @var{num}}, where
1215 @var{num} is the signal number.
1217 If the supplied signal number is not within the range of valid
1218 indices, then returns @code{NULL}.
1220 The contents of the location pointed to are only guaranteed to be
1221 valid until the next call to @code{strsigno}.
1223 @end deftypefn
1225 @c strstr.c:6
1226 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
1228 This function searches for the substring @var{sub} in the string
1229 @var{string}, not including the terminating null characters.  A pointer
1230 to the first occurrence of @var{sub} is returned, or @code{NULL} if the
1231 substring is absent.  If @var{sub} points to a string with zero
1232 length, the function returns @var{string}.
1234 @end deftypefn
1236 @c strtod.c:27
1237 @deftypefn Supplemental double strtod (const char *@var{string}, char **@var{endptr})
1239 This ISO C function converts the initial portion of @var{string} to a
1240 @code{double}.  If @var{endptr} is not @code{NULL}, a pointer to the
1241 character after the last character used in the conversion is stored in
1242 the location referenced by @var{endptr}.  If no conversion is
1243 performed, zero is returned and the value of @var{string} is stored in
1244 the location referenced by @var{endptr}.
1246 @end deftypefn
1248 @c strerror.c:729
1249 @deftypefn Extension int strtoerrno (const char *@var{name})
1251 Given the symbolic name of a error number (e.g., @code{EACCES}), map it
1252 to an errno value.  If no translation is found, returns 0.
1254 @end deftypefn
1256 @c strtol.c:33
1257 @deftypefn Supplemental {long int} strtol (const char *@var{string}, char **@var{endptr}, int @var{base})
1258 @deftypefnx Supplemental {unsigned long int} strtoul (const char *@var{string}, char **@var{endptr}, int @var{base})
1260 The @code{strtol} function converts the string in @var{string} to a
1261 long integer value according to the given @var{base}, which must be
1262 between 2 and 36 inclusive, or be the special value 0.  If @var{base}
1263 is 0, @code{strtol} will look for the prefixes @code{0} and @code{0x}
1264 to indicate bases 8 and 16, respectively, else default to base 10.
1265 When the base is 16 (either explicitly or implicitly), a prefix of
1266 @code{0x} is allowed.  The handling of @var{endptr} is as that of
1267 @code{strtod} above.  The @code{strtoul} function is the same, except
1268 that the converted value is unsigned.
1270 @end deftypefn
1272 @c strsignal.c:500
1273 @deftypefn Extension int strtosigno (const char *@var{name})
1275 Given the symbolic name of a signal, map it to a signal number.  If no
1276 translation is found, returns 0.
1278 @end deftypefn
1280 @c strverscmp.c:25
1281 @deftypefun int strverscmp (const char *@var{s1}, const char *@var{s2})
1282 The @code{strverscmp} function compares the string @var{s1} against
1283 @var{s2}, considering them as holding indices/version numbers.  Return
1284 value follows the same conventions as found in the @code{strverscmp}
1285 function.  In fact, if @var{s1} and @var{s2} contain no digits,
1286 @code{strverscmp} behaves like @code{strcmp}.
1288 Basically, we compare strings normally (character by character), until
1289 we find a digit in each string - then we enter a special comparison
1290 mode, where each sequence of digits is taken as a whole.  If we reach the
1291 end of these two parts without noticing a difference, we return to the
1292 standard comparison mode.  There are two types of numeric parts:
1293 "integral" and "fractional" (those  begin with a '0'). The types
1294 of the numeric parts affect the way we sort them:
1296 @itemize @bullet
1297 @item
1298 integral/integral: we compare values as you would expect.
1300 @item
1301 fractional/integral: the fractional part is less than the integral one.
1302 Again, no surprise.
1304 @item
1305 fractional/fractional: the things become a bit more complex.
1306 If the common prefix contains only leading zeroes, the longest part is less
1307 than the other one; else the comparison behaves normally.
1308 @end itemize
1310 @smallexample
1311 strverscmp ("no digit", "no digit")
1312     @result{} 0    // @r{same behavior as strcmp.}
1313 strverscmp ("item#99", "item#100")
1314     @result{} <0   // @r{same prefix, but 99 < 100.}
1315 strverscmp ("alpha1", "alpha001")
1316     @result{} >0   // @r{fractional part inferior to integral one.}
1317 strverscmp ("part1_f012", "part1_f01")
1318     @result{} >0   // @r{two fractional parts.}
1319 strverscmp ("foo.009", "foo.0")
1320     @result{} <0   // @r{idem, but with leading zeroes only.}
1321 @end smallexample
1323 This function is especially useful when dealing with filename sorting,
1324 because filenames frequently hold indices/version numbers.
1325 @end deftypefun
1327 @c tmpnam.c:3
1328 @deftypefn Supplemental char* tmpnam (char *@var{s})
1330 This function attempts to create a name for a temporary file, which
1331 will be a valid file name yet not exist when @code{tmpnam} checks for
1332 it.  @var{s} must point to a buffer of at least @code{L_tmpnam} bytes,
1333 or be @code{NULL}.  Use of this function creates a security risk, and it must
1334 not be used in new projects.  Use @code{mkstemp} instead.
1336 @end deftypefn
1338 @c unlink-if-ordinary.c:27
1339 @deftypefn Supplemental int unlink_if_ordinary (const char*)
1341 Unlinks the named file, unless it is special (e.g. a device file).
1342 Returns 0 when the file was unlinked, a negative value (and errno set) when
1343 there was an error deleting the file, and a positive value if no attempt
1344 was made to unlink the file because it is special.
1346 @end deftypefn
1348 @c fopen_unlocked.c:31
1349 @deftypefn Extension void unlock_std_streams (void)
1351 If the OS supports it, ensure that the standard I/O streams,
1352 @code{stdin}, @code{stdout} and @code{stderr} are setup to avoid any
1353 multi-threaded locking.  Otherwise do nothing.
1355 @end deftypefn
1357 @c fopen_unlocked.c:23
1358 @deftypefn Extension void unlock_stream (FILE * @var{stream})
1360 If the OS supports it, ensure that the supplied stream is setup to
1361 avoid any multi-threaded locking.  Otherwise leave the @code{FILE}
1362 pointer unchanged.  If the @var{stream} is @code{NULL} do nothing.
1364 @end deftypefn
1366 @c vasprintf.c:47
1367 @deftypefn Extension int vasprintf (char **@var{resptr}, const char *@var{format}, va_list @var{args})
1369 Like @code{vsprintf}, but instead of passing a pointer to a buffer,
1370 you pass a pointer to a pointer.  This function will compute the size
1371 of the buffer needed, allocate memory with @code{malloc}, and store a
1372 pointer to the allocated memory in @code{*@var{resptr}}.  The value
1373 returned is the same as @code{vsprintf} would return.  If memory could
1374 not be allocated, minus one is returned and @code{NULL} is stored in
1375 @code{*@var{resptr}}.
1377 @end deftypefn
1379 @c vfork.c:6
1380 @deftypefn Supplemental int vfork (void)
1382 Emulates @code{vfork} by calling @code{fork} and returning its value.
1384 @end deftypefn
1386 @c vprintf.c:3
1387 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap})
1388 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, const char *@var{format}, va_list @var{ap})
1389 @deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap})
1391 These functions are the same as @code{printf}, @code{fprintf}, and
1392 @code{sprintf}, respectively, except that they are called with a
1393 @code{va_list} instead of a variable number of arguments.  Note that
1394 they do not call @code{va_end}; this is the application's
1395 responsibility.  In @libib{} they are implemented in terms of the
1396 nonstandard but common function @code{_doprnt}.
1398 @end deftypefn
1400 @c vsnprintf.c:28
1401 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, va_list @var{ap})
1403 This function is similar to vsprintf, but it will print at most
1404 @var{n} characters.  On error the return value is -1, otherwise it
1405 returns the number of characters that would have been printed had
1406 @var{n} been sufficiently large, regardless of the actual value of
1407 @var{n}.  Note some pre-C99 system libraries do not implement this
1408 correctly so users cannot generally rely on the return value if the
1409 system version of this function is used.
1411 @end deftypefn
1413 @c waitpid.c:3
1414 @deftypefn Supplemental int waitpid (int @var{pid}, int *@var{status}, int)
1416 This is a wrapper around the @code{wait} function.  Any ``special''
1417 values of @var{pid} depend on your implementation of @code{wait}, as
1418 does the return value.  The third argument is unused in @libib{}.
1420 @end deftypefn
1422 @c xatexit.c:11
1423 @deftypefun int xatexit (void (*@var{fn}) (void))
1425 Behaves as the standard @code{atexit} function, but with no limit on
1426 the number of registered functions.  Returns 0 on success, or @minus{}1 on
1427 failure.  If you use @code{xatexit} to register functions, you must use
1428 @code{xexit} to terminate your program.
1430 @end deftypefun
1432 @c xmalloc.c:38
1433 @deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize})
1435 Allocate memory without fail, and set it to zero.  This routine functions
1436 like @code{calloc}, but will behave the same as @code{xmalloc} if memory
1437 cannot be found.
1439 @end deftypefn
1441 @c xexit.c:22
1442 @deftypefn Replacement void xexit (int @var{code})
1444 Terminates the program.  If any functions have been registered with
1445 the @code{xatexit} replacement function, they will be called first.
1446 Termination is handled via the system's normal @code{exit} call.
1448 @end deftypefn
1450 @c xmalloc.c:22
1451 @deftypefn Replacement void* xmalloc (size_t)
1453 Allocate memory without fail.  If @code{malloc} fails, this will print
1454 a message to @code{stderr} (using the name set by
1455 @code{xmalloc_set_program_name},
1456 if any) and then call @code{xexit}.  Note that it is therefore safe for
1457 a program to contain @code{#define malloc xmalloc} in its source.
1459 @end deftypefn
1461 @c xmalloc.c:53
1462 @deftypefn Replacement void xmalloc_failed (size_t)
1464 This function is not meant to be called by client code, and is listed
1465 here for completeness only.  If any of the allocation routines fail, this
1466 function will be called to print an error message and terminate execution.
1468 @end deftypefn
1470 @c xmalloc.c:46
1471 @deftypefn Replacement void xmalloc_set_program_name (const char *@var{name})
1473 You can use this to set the name of the program used by
1474 @code{xmalloc_failed} when printing a failure message.
1476 @end deftypefn
1478 @c xmemdup.c:7
1479 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
1481 Duplicates a region of memory without fail.  First, @var{alloc_size} bytes
1482 are allocated, then @var{copy_size} bytes from @var{input} are copied into
1483 it, and the new memory is returned.  If fewer bytes are copied than were
1484 allocated, the remaining memory is zeroed.
1486 @end deftypefn
1488 @c xmalloc.c:32
1489 @deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
1490 Reallocate memory without fail.  This routine functions like @code{realloc},
1491 but will behave the same as @code{xmalloc} if memory cannot be found.
1493 @end deftypefn
1495 @c xstrdup.c:7
1496 @deftypefn Replacement char* xstrdup (const char *@var{s})
1498 Duplicates a character string without fail, using @code{xmalloc} to
1499 obtain memory.
1501 @end deftypefn
1503 @c xstrerror.c:7
1504 @deftypefn Replacement char* xstrerror (int @var{errnum})
1506 Behaves exactly like the standard @code{strerror} function, but
1507 will never return a @code{NULL} pointer.
1509 @end deftypefn
1511 @c xstrndup.c:23
1512 @deftypefn Replacement char* xstrndup (const char *@var{s}, size_t @var{n})
1514 Returns a pointer to a copy of @var{s} with at most @var{n} characters
1515 without fail, using @code{xmalloc} to obtain memory.  The result is
1516 always NUL terminated.
1518 @end deftypefn