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.
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:
15 @item HOST_CHARSET_UNKNOWN
16 The host character set is unknown - that is, not one of the next two
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.)
29 @deftypefn Extension struct pex_obj *pex_init (int @var{flags}, const char *@var{pname}, const char *@var{tempbase})
31 Prepare to execute one or more programs, with standard output of each
32 program fed to standard input of the next. This is a system
33 independent interface to execute a pipeline.
35 @var{flags} is a bitwise combination of the following:
39 @vindex PEX_RECORD_TIMES
40 @item PEX_RECORD_TIMES
41 Record subprocess times if possible.
45 Use pipes for communication between processes, if possible.
47 @vindex PEX_SAVE_TEMPS
49 Don't delete temporary files used for communication between
54 @var{pname} is the name of program to be executed, used in error
55 messages. @var{tempbase} is a base name to use for any required
56 temporary files; it may be @code{NULL} to use a randomly chosen name.
61 @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})
63 An interface to @code{pex_init} to permit the easy execution of a
64 single program. The return value and most of the parameters are as
65 for a call to @code{pex_run}. @var{flags} is restricted to a
66 combination of @code{PEX_SEARCH}, @code{PEX_STDERR_TO_STDOUT}, and
67 @code{PEX_BINARY_OUTPUT}. @var{outname} is interpreted as if
68 @code{PEX_LAST} were set. On a successful return, *@var{status} will
69 be set to the exit status of the program.
74 @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})
76 Execute one program in a pipeline. On success this returns
77 @code{NULL}. On failure it returns an error message, a statically
80 @var{obj} is returned by a previous call to @code{pex_init}.
82 @var{flags} is a bitwise combination of the following:
88 This must be set on the last program in the pipeline. In particular,
89 it should be set when executing a single program. The standard output
90 of the program will be sent to @var{outname}, or, if @var{outname} is
91 @code{NULL}, to the standard output of the calling program. This
92 should not be set if you want to call @code{pex_read_output}
93 (described below). After a call to @code{pex_run} with this bit set,
94 @var{pex_run} may no longer be called with the same @var{obj}.
98 Search for the program using the user's executable search path.
102 @var{outname} is a suffix. See the description of @var{outname},
105 @vindex PEX_STDERR_TO_STDOUT
106 @item PEX_STDERR_TO_STDOUT
107 Send the program's standard error to standard output, if possible.
109 @vindex PEX_BINARY_INPUT
110 @vindex PEX_BINARY_OUTPUT
111 @item PEX_BINARY_INPUT
112 @itemx PEX_BINARY_OUTPUT
113 The standard input (output) of the program should be read (written) in
114 binary mode rather than text mode. These flags are ignored on systems
115 which do not distinguish binary mode and text mode, such as Unix. For
116 proper behavior these flags should match appropriately--a call to
117 @code{pex_run} using @code{PEX_BINARY_OUTPUT} should be followed by a
118 call using @code{PEX_BINARY_INPUT}.
121 @var{executable} is the program to execute. @var{argv} is the set of
122 arguments to pass to the program; normally @code{@var{argv}[0]} will
123 be a copy of @var{executable}.
125 @var{outname} is used to set the name of the file to use for standard
126 output. There are two cases in which no output file will be used: 1)
127 if @code{PEX_LAST} is not set in @var{flags}, and @code{PEX_USE_PIPES}
128 was set in the call to @code{pex_init}, and the system supports pipes;
129 2) if @code{PEX_LAST} is set in @var{flags}, and @var{outname} is
130 @code{NULL}. Otherwise the code will use a file to hold standard
131 output. If @code{PEX_LAST} is not set, this file is considered to be
132 a temporary file, and it will be removed when no longer needed, unless
133 @code{PEX_SAVE_TEMPS} was set in the call to @code{pex_init}.
135 There are two cases to consider when setting the name of the file to
136 hold standard output.
138 First case: @code{PEX_SUFFIX} is set in @var{flags}. In this case
139 @var{outname} may not be @code{NULL}. If the @var{tempbase} parameter
140 to @code{pex_init} was not @code{NULL}, then the output file name is
141 the concatenation of @var{tempbase} and @var{outname}. If
142 @var{tempbase} was @code{NULL}, then the output file name is a random
143 file name ending in @var{outname}.
145 Second case: @code{PEX_SUFFIX} was not set in @var{flags}. In this
146 case, if @var{outname} is not @code{NULL}, it is used as the output
147 file name. If @var{outname} is @code{NULL}, and @var{tempbase} was
148 not NULL, the output file name is randomly chosen using
149 @var{tempbase}. Otherwise the output file name is chosen completely
152 @var{errname} is the file name to use for standard error output. If
153 it is @code{NULL}, standard error is the same as the caller.
154 Otherwise, standard error is written to the named file.
156 On an error return, the code sets @code{*@var{err}} to an @code{errno}
157 value, or to 0 if there is no relevant @code{errno}.
162 @deftypefn Replacement void* alloca (size_t @var{size})
164 This function allocates memory which will be automatically reclaimed
165 after the procedure exits. The @libib{} implementation does not free
166 the memory immediately but will do so eventually during subsequent
167 calls to this function. Memory is allocated using @code{xmalloc} under
168 normal circumstances.
170 The header file @file{alloca-conf.h} can be used in conjunction with the
171 GNU Autoconf test @code{AC_FUNC_ALLOCA} to test for and properly make
172 available this function. The @code{AC_FUNC_ALLOCA} test requires that
173 client code use a block of preprocessor code to be safe (see the Autoconf
174 manual for more); this header incorporates that logic and more, including
175 the possibility of a GCC built-in function.
180 @deftypefn Extension int asprintf (char **@var{resptr}, const char *@var{format}, ...)
182 Like @code{sprintf}, but instead of passing a pointer to a buffer, you
183 pass a pointer to a pointer. This function will compute the size of
184 the buffer needed, allocate memory with @code{malloc}, and store a
185 pointer to the allocated memory in @code{*@var{resptr}}. The value
186 returned is the same as @code{sprintf} would return. If memory could
187 not be allocated, minus one is returned and @code{NULL} is stored in
188 @code{*@var{resptr}}.
193 @deftypefn Supplemental int atexit (void (*@var{f})())
195 Causes function @var{f} to be called at exit. Returns 0.
200 @deftypefn Supplemental char* basename (const char *@var{name})
202 Returns a pointer to the last component of pathname @var{name}.
203 Behavior is undefined if the pathname ends in a directory separator.
208 @deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
210 Compares the first @var{count} bytes of two areas of memory. Returns
211 zero if they are the same, nonzero otherwise. Returns zero if
212 @var{count} is zero. A nonzero result only indicates a difference,
213 it does not indicate any sorting order (say, by having a positive
214 result mean @var{x} sorts before @var{y}).
219 @deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
221 Copies @var{length} bytes from memory region @var{in} to region
222 @var{out}. The use of @code{bcopy} is deprecated in new programs.
227 @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 *))
229 Performs a search over an array of @var{nmemb} elements pointed to by
230 @var{base} for a member that matches the object pointed to by @var{key}.
231 The size of each member is specified by @var{size}. The array contents
232 should be sorted in ascending order according to the @var{compar}
233 comparison function. This routine should take two arguments pointing to
234 the @var{key} and to an array member, in that order, and should return an
235 integer less than, equal to, or greater than zero if the @var{key} object
236 is respectively less than, matching, or greater than the array member.
241 @deftypefn Extension char** buildargv (char *@var{sp})
243 Given a pointer to a string, parse the string extracting fields
244 separated by whitespace and optionally enclosed within either single
245 or double quotes (which are stripped off), and build a vector of
246 pointers to copies of the string for each field. The input string
247 remains unchanged. The last element of the vector is followed by a
250 All of the memory for the pointer array and copies of the string
251 is obtained from @code{malloc}. All of the memory can be returned to the
252 system with the single function call @code{freeargv}, which takes the
253 returned result of @code{buildargv}, as it's argument.
255 Returns a pointer to the argument vector if successful. Returns
256 @code{NULL} if @var{sp} is @code{NULL} or if there is insufficient
257 memory to complete building the argument vector.
259 If the input is a null string (as opposed to a @code{NULL} pointer),
260 then buildarg returns an argument vector that has one arg, a null
266 @deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
268 Zeros @var{count} bytes starting at @var{mem}. Use of this function
269 is deprecated in favor of @code{memset}.
274 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
276 Uses @code{malloc} to allocate storage for @var{nelem} objects of
277 @var{elsize} bytes each, then zeros the memory.
282 @deftypefn Extension char* choose_temp_base (void)
284 Return a prefix for temporary file names or @code{NULL} if unable to
285 find one. The current directory is chosen if all else fails so the
286 program is exited if a temporary directory can't be found (@code{mktemp}
287 fails). The buffer for the result is obtained with @code{xmalloc}.
289 This function is provided for backwards compatability only. Its use is
294 @c make-temp-file.c:87
295 @deftypefn Replacement char* choose_tmpdir ()
297 Returns a pointer to a directory path suitable for creating temporary
303 @deftypefn Supplemental long clock (void)
305 Returns an approximation of the CPU time used by the process as a
306 @code{clock_t}; divide this number by @samp{CLOCKS_PER_SEC} to get the
307 number of seconds used.
312 @deftypefn Extension char* concat (const char *@var{s1}, const char *@var{s2}, @dots{}, @code{NULL})
314 Concatenate zero or more of strings and return the result in freshly
315 @code{xmalloc}ed memory. Returns @code{NULL} if insufficient memory is
316 available. The argument list is terminated by the first @code{NULL}
317 pointer encountered. Pointers to empty strings are ignored.
322 @deftypefn Extension char** dupargv (char **@var{vector})
324 Duplicate an argument vector. Simply scans through @var{vector},
325 duplicating each argument until the terminating @code{NULL} is found.
326 Returns a pointer to the argument vector if successful. Returns
327 @code{NULL} if there is insufficient memory to complete building the
333 @deftypefn Extension int errno_max (void)
335 Returns the maximum @code{errno} value for which a corresponding
336 symbolic name or message is available. Note that in the case where we
337 use the @code{sys_errlist} supplied by the system, it is possible for
338 there to be more symbolic names than messages, or vice versa. In
339 fact, the manual page for @code{perror(3C)} explicitly warns that one
340 should check the size of the table (@code{sys_nerr}) before indexing
341 it, since new error codes may be added to the system before they are
342 added to the table. Thus @code{sys_nerr} might be smaller than value
343 implied by the largest @code{errno} value defined in @code{<errno.h>}.
345 We return the maximum value that can be used to obtain a meaningful
346 symbolic name or message.
351 @deftypefn Extension int fdmatch (int @var{fd1}, int @var{fd2})
353 Check to see if two open file descriptors refer to the same file.
354 This is useful, for example, when we have an open file descriptor for
355 an unnamed file, and the name of a file that we believe to correspond
356 to that fd. This can happen when we are exec'd with an already open
357 file (@code{stdout} for example) or from the SVR4 @file{/proc} calls
358 that return open file descriptors for mapped address spaces. All we
359 have to do is open the file by name and check the two file descriptors
360 for a match, which is done by comparing major and minor device numbers
365 @c fopen_unlocked.c:40
366 @deftypefn Extension FILE * fdopen_unlocked (int @var{fildes}, const char * @var{mode})
368 Opens and returns a @code{FILE} pointer via @code{fdopen}. If the
369 operating system supports it, ensure that the stream is setup to avoid
370 any multi-threaded locking. Otherwise return the @code{FILE} pointer
376 @deftypefn Supplemental int ffs (int @var{valu})
378 Find the first (least significant) bit set in @var{valu}. Bits are
379 numbered from right to left, starting with bit 1 (corresponding to the
380 value 1). If @var{valu} is zero, zero is returned.
385 @deftypefn Replacement int fnmatch (const char *@var{pattern}, const char *@var{string}, int @var{flags})
387 Matches @var{string} against @var{pattern}, returning zero if it
388 matches, @code{FNM_NOMATCH} if not. @var{pattern} may contain the
389 wildcards @code{?} to match any one character, @code{*} to match any
390 zero or more characters, or a set of alternate characters in square
391 brackets, like @samp{[a-gt8]}, which match one character (@code{a}
392 through @code{g}, or @code{t}, or @code{8}, in this example) if that one
393 character is in the set. A set may be inverted (i.e., match anything
394 except what's in the set) by giving @code{^} or @code{!} as the first
395 character in the set. To include those characters in the set, list them
396 as anything other than the first character of the set. To include a
397 dash in the set, list it last in the set. A backslash character makes
398 the following character not special, so for example you could match
399 against a literal asterisk with @samp{\*}. To match a literal
400 backslash, use @samp{\\}.
402 @code{flags} controls various aspects of the matching process, and is a
403 boolean OR of zero or more of the following values (defined in
410 @var{string} is assumed to be a path name. No wildcard will ever match
414 Do not interpret backslashes as quoting the following special character.
417 A leading period (at the beginning of @var{string}, or if
418 @code{FNM_PATHNAME} after a slash) is not matched by @code{*} or
419 @code{?} but must be matched explicitly.
421 @item FNM_LEADING_DIR
422 Means that @var{string} also matches @var{pattern} if some initial part
423 of @var{string} matches, and is followed by @code{/} and zero or more
424 characters. For example, @samp{foo*} would match either @samp{foobar}
425 or @samp{foobar/grill}.
428 Ignores case when performing the comparison.
434 @c fopen_unlocked.c:31
435 @deftypefn Extension FILE * fopen_unlocked (const char *@var{path}, const char * @var{mode})
437 Opens and returns a @code{FILE} pointer via @code{fopen}. If the
438 operating system supports it, ensure that the stream is setup to avoid
439 any multi-threaded locking. Otherwise return the @code{FILE} pointer
445 @deftypefn Extension void freeargv (char **@var{vector})
447 Free an argument vector that was built using @code{buildargv}. Simply
448 scans through @var{vector}, freeing the memory for each argument until
449 the terminating @code{NULL} is found, and then frees @var{vector}
454 @c fopen_unlocked.c:49
455 @deftypefn Extension FILE * freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream})
457 Opens and returns a @code{FILE} pointer via @code{freopen}. If the
458 operating system supports it, ensure that the stream is setup to avoid
459 any multi-threaded locking. Otherwise return the @code{FILE} pointer
465 @deftypefn Replacement long get_run_time (void)
467 Returns the time used so far, in microseconds. If possible, this is
468 the time used by this process, else it is the elapsed time since the
474 @deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len})
476 Copy the absolute pathname for the current working directory into
477 @var{pathname}, which is assumed to point to a buffer of at least
478 @var{len} bytes, and return a pointer to the buffer. If the current
479 directory's path doesn't fit in @var{len} characters, the result is
480 @code{NULL} and @code{errno} is set. If @var{pathname} is a null pointer,
481 @code{getcwd} will obtain @var{len} bytes of space using
487 @deftypefn Supplemental int getpagesize (void)
489 Returns the number of bytes in a page of memory. This is the
490 granularity of many of the system memory management routines. No
491 guarantee is made as to whether or not it is the same as the basic
492 memory management hardware page size.
497 @deftypefn Supplemental char* getpwd (void)
499 Returns the current working directory. This implementation caches the
500 result on the assumption that the process will not call @code{chdir}
501 between calls to @code{getpwd}.
506 @deftypefn Supplemental int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
508 Writes the current time to @var{tp}. This implementation requires
509 that @var{tz} be NULL. Returns 0 on success, -1 on failure.
514 @deftypefn Extension void hex_init (void)
516 Initializes the array mapping the current character set to
517 corresponding hex values. This function must be called before any
518 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a
519 default ASCII-based table will normally be used on ASCII systems.
524 @deftypefn Extension int hex_p (int @var{c})
526 Evaluates to non-zero if the given character is a valid hex character,
527 or zero if it is not. Note that the value you pass will be cast to
528 @code{unsigned char} within the macro.
533 @deftypefn Extension {unsigned int} hex_value (int @var{c})
535 Returns the numeric equivalent of the given character when interpreted
536 as a hexidecimal digit. The result is undefined if you pass an
537 invalid hex digit. Note that the value you pass will be cast to
538 @code{unsigned char} within the macro.
540 The @code{hex_value} macro returns @code{unsigned int}, rather than
541 signed @code{int}, to make it easier to use in parsing addresses from
542 hex dump files: a signed @code{int} would be sign-extended when
543 converted to a wider unsigned type --- like @code{bfd_vma}, on some
549 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
551 Returns a pointer to the first occurrence of the character @var{c} in
552 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
553 deprecated in new programs in favor of @code{strchr}.
558 @deftypefn Supplemental void insque (struct qelem *@var{elem}, struct qelem *@var{pred})
559 @deftypefnx Supplemental void remque (struct qelem *@var{elem})
561 Routines to manipulate queues built from doubly linked lists. The
562 @code{insque} routine inserts @var{elem} in the queue immediately
563 after @var{pred}. The @code{remque} routine removes @var{elem} from
564 its containing queue. These routines expect to be passed pointers to
565 structures which have as their first members a forward pointer and a
566 back pointer, like this prototype (although no prototype is provided):
570 struct qelem *q_forw;
571 struct qelem *q_back;
579 @deffn Extension ISALPHA (@var{c})
580 @deffnx Extension ISALNUM (@var{c})
581 @deffnx Extension ISBLANK (@var{c})
582 @deffnx Extension ISCNTRL (@var{c})
583 @deffnx Extension ISDIGIT (@var{c})
584 @deffnx Extension ISGRAPH (@var{c})
585 @deffnx Extension ISLOWER (@var{c})
586 @deffnx Extension ISPRINT (@var{c})
587 @deffnx Extension ISPUNCT (@var{c})
588 @deffnx Extension ISSPACE (@var{c})
589 @deffnx Extension ISUPPER (@var{c})
590 @deffnx Extension ISXDIGIT (@var{c})
592 These twelve macros are defined by @file{safe-ctype.h}. Each has the
593 same meaning as the corresponding macro (with name in lowercase)
594 defined by the standard header @file{ctype.h}. For example,
595 @code{ISALPHA} returns true for alphabetic characters and false for
596 others. However, there are two differences between these macros and
597 those provided by @file{ctype.h}:
600 @item These macros are guaranteed to have well-defined behavior for all
601 values representable by @code{signed char} and @code{unsigned char}, and
604 @item These macros ignore the current locale; they are true for these
605 fixed sets of characters:
606 @multitable {@code{XDIGIT}} {yada yada yada yada yada yada yada yada}
607 @item @code{ALPHA} @tab @kbd{A-Za-z}
608 @item @code{ALNUM} @tab @kbd{A-Za-z0-9}
609 @item @code{BLANK} @tab @kbd{space tab}
610 @item @code{CNTRL} @tab @code{!PRINT}
611 @item @code{DIGIT} @tab @kbd{0-9}
612 @item @code{GRAPH} @tab @code{ALNUM || PUNCT}
613 @item @code{LOWER} @tab @kbd{a-z}
614 @item @code{PRINT} @tab @code{GRAPH ||} @kbd{space}
615 @item @code{PUNCT} @tab @kbd{`~!@@#$%^&*()_-=+[@{]@}\|;:'",<.>/?}
616 @item @code{SPACE} @tab @kbd{space tab \n \r \f \v}
617 @item @code{UPPER} @tab @kbd{A-Z}
618 @item @code{XDIGIT} @tab @kbd{0-9A-Fa-f}
621 Note that, if the host character set is ASCII or a superset thereof,
622 all these macros will return false for all values of @code{char} outside
623 the range of 7-bit ASCII. In particular, both ISPRINT and ISCNTRL return
624 false for characters with numeric values from 128 to 255.
629 @deffn Extension ISIDNUM (@var{c})
630 @deffnx Extension ISIDST (@var{c})
631 @deffnx Extension IS_VSPACE (@var{c})
632 @deffnx Extension IS_NVSPACE (@var{c})
633 @deffnx Extension IS_SPACE_OR_NUL (@var{c})
634 @deffnx Extension IS_ISOBASIC (@var{c})
635 These six macros are defined by @file{safe-ctype.h} and provide
636 additional character classes which are useful when doing lexical
637 analysis of C or similar languages. They are true for the following
640 @multitable {@code{SPACE_OR_NUL}} {yada yada yada yada yada yada yada yada}
641 @item @code{IDNUM} @tab @kbd{A-Za-z0-9_}
642 @item @code{IDST} @tab @kbd{A-Za-z_}
643 @item @code{VSPACE} @tab @kbd{\r \n}
644 @item @code{NVSPACE} @tab @kbd{space tab \f \v \0}
645 @item @code{SPACE_OR_NUL} @tab @code{VSPACE || NVSPACE}
646 @item @code{ISOBASIC} @tab @code{VSPACE || NVSPACE || PRINT}
651 @deftypefn Replacement {const char*} lbasename (const char *@var{name})
653 Given a pointer to a string containing a typical pathname
654 (@samp{/usr/src/cmd/ls/ls.c} for example), returns a pointer to the
655 last component of the pathname (@samp{ls.c} in this case). The
656 returned pointer is guaranteed to lie within the original
657 string. This latter fact is not true of many vendor C
658 libraries, which return special strings or modify the passed
659 strings for particular input.
661 In particular, the empty string returns the same empty string,
662 and a path ending in @code{/} returns the empty string after it.
667 @deftypefn Replacement {const char*} lrealpath (const char *@var{name})
669 Given a pointer to a string containing a pathname, returns a canonical
670 version of the filename. Symlinks will be resolved, and ``.'' and ``..''
671 components will be simplified. The returned value will be allocated using
672 @code{malloc}, or @code{NULL} will be returned on a memory allocation error.
676 @c make-relative-prefix.c:24
677 @deftypefn Extension {const char*} make_relative_prefix (const char *@var{progname}, const char *@var{bin_prefix}, const char *@var{prefix})
679 Given three paths @var{progname}, @var{bin_prefix}, @var{prefix},
680 return the path that is in the same position relative to
681 @var{progname}'s directory as @var{prefix} is relative to
682 @var{bin_prefix}. That is, a string starting with the directory
683 portion of @var{progname}, followed by a relative pathname of the
684 difference between @var{bin_prefix} and @var{prefix}.
686 If @var{progname} does not contain any directory separators,
687 @code{make_relative_prefix} will search @env{PATH} to find a program
688 named @var{progname}. Also, if @var{progname} is a symbolic link,
689 the symbolic link will be resolved.
691 For example, if @var{bin_prefix} is @code{/alpha/beta/gamma/gcc/delta},
692 @var{prefix} is @code{/alpha/beta/gamma/omega/}, and @var{progname} is
693 @code{/red/green/blue/gcc}, then this function will return
694 @code{/red/green/blue/../../omega/}.
696 The return value is normally allocated via @code{malloc}. If no
697 relative prefix can be found, return @code{NULL}.
701 @c make-temp-file.c:137
702 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
704 Return a temporary file name (as a string) or @code{NULL} if unable to
705 create one. @var{suffix} is a suffix to append to the file name. The
706 string is @code{malloc}ed, and the temporary file has been created.
711 @deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, size_t @var{n})
713 This function searches memory starting at @code{*@var{s}} for the
714 character @var{c}. The search only ends with the first occurrence of
715 @var{c}, or after @var{length} characters; in particular, a null
716 character does not terminate the search. If the character @var{c} is
717 found within @var{length} characters of @code{*@var{s}}, a pointer
718 to the character is returned. If @var{c} is not found, then @code{NULL} is
724 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, size_t @var{count})
726 Compares the first @var{count} bytes of two areas of memory. Returns
727 zero if they are the same, a value less than zero if @var{x} is
728 lexically less than @var{y}, or a value greater than zero if @var{x}
729 is lexically greater than @var{y}. Note that lexical order is determined
730 as if comparing unsigned char arrays.
735 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
737 Copies @var{length} bytes from memory region @var{in} to region
738 @var{out}. Returns a pointer to @var{out}.
743 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count})
745 Copies @var{count} bytes from memory area @var{from} to memory area
746 @var{to}, returning a pointer to @var{to}.
751 @deftypefn Supplemental void* mempcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
753 Copies @var{length} bytes from memory region @var{in} to region
754 @var{out}. Returns a pointer to @var{out} + @var{length}.
759 @deftypefn Supplemental void* memset (void *@var{s}, int @var{c}, size_t @var{count})
761 Sets the first @var{count} bytes of @var{s} to the constant byte
762 @var{c}, returning a pointer to @var{s}.
767 @deftypefn Replacement int mkstemps (char *@var{template}, int @var{suffix_len})
769 Generate a unique temporary file name from @var{template}.
770 @var{template} has the form:
773 @var{path}/ccXXXXXX@var{suffix}
776 @var{suffix_len} tells us how long @var{suffix} is (it can be zero
777 length). The last six characters of @var{template} before @var{suffix}
778 must be @samp{XXXXXX}; they are replaced with a string that makes the
779 filename unique. Returns a file descriptor open on the file for
785 @deftypefn Extension void pex_free (struct pex_obj @var{obj})
787 Clean up and free all data associated with @var{obj}.
792 @deftypefn Extension int pex_get_status (struct pex_obj *@var{obj}, int @var{count}, int *@var{vector})
794 Returns the exit status of all programs run using @var{obj}.
795 @var{count} is the number of results expected. The results will be
796 placed into @var{vector}. The results are in the order of the calls
797 to @code{pex_run}. Returns 0 on error, 1 on success.
802 @deftypefn Extension int pex_get_times (struct pex_obj *@var{obj}, int @var{count}, struct pex_time *@var{vector})
804 Returns the process execution times of all programs run using
805 @var{obj}. @var{count} is the number of results expected. The
806 results will be placed into @var{vector}. The results are in the
807 order of the calls to @code{pex_run}. Returns 0 on error, 1 on
810 @code{struct pex_time} has the following fields: @code{user_seconds},
811 @code{user_microseconds}, @code{system_seconds},
812 @code{system_microseconds}. On systems which do not support reporting
813 process times, all the fields will be set to @code{0}.
818 @deftypefn Extension FILE * pex_read_output (struct pex_obj *@var{obj}, int @var{binary})
820 Returns a @code{FILE} pointer which may be used to read the standard
821 output of the last program in the pipeline. When this is used,
822 @code{PEX_LAST} should not be used in a call to @code{pex_run}. After
823 this is called, @code{pex_run} may no longer be called with the same
824 @var{obj}. @var{binary} should be non-zero if the file should be
825 opened in binary mode. Don't call @code{fclose} on the returned file;
826 it will be closed by @code{pex_free}.
831 @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)
833 This is the old interface to execute one or more programs. It is
834 still supported for compatibility purposes, but is no longer
840 @deftypefn Supplemental void psignal (unsigned @var{signo}, char *@var{message})
842 Print @var{message} to the standard error, followed by a colon,
843 followed by the description of the signal specified by @var{signo},
844 followed by a newline.
849 @deftypefn Supplemental int putenv (const char *@var{string})
851 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
852 the environment or remove it. If @var{string} is of the form
853 @samp{name=value} the string is added; if no @samp{=} is present the
854 name is unset/removed.
859 @deftypefn Extension int pwait (int @var{pid}, int *@var{status}, int @var{flags})
861 Another part of the old execution interface.
866 @deftypefn Supplement {long int} random (void)
867 @deftypefnx Supplement void srandom (unsigned int @var{seed})
868 @deftypefnx Supplement void* initstate (unsigned int @var{seed}, void *@var{arg_state}, unsigned long @var{n})
869 @deftypefnx Supplement void* setstate (void *@var{arg_state})
871 Random number functions. @code{random} returns a random number in the
872 range 0 to @code{LONG_MAX}. @code{srandom} initializes the random
873 number generator to some starting point determined by @var{seed}
874 (else, the values returned by @code{random} are always the same for each
875 run of the program). @code{initstate} and @code{setstate} allow fine-grained
876 control over the state of the random number generator.
881 @deftypefn Extension char* reconcat (char *@var{optr}, const char *@var{s1}, @dots{}, @code{NULL})
883 Same as @code{concat}, except that if @var{optr} is not @code{NULL} it
884 is freed after the string is created. This is intended to be useful
885 when you're extending an existing string or building up a string in a
889 str = reconcat (str, "pre-", str, NULL);
895 @deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new})
897 Renames a file from @var{old} to @var{new}. If @var{new} already
898 exists, it is removed.
903 @deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})
905 Returns a pointer to the last occurrence of the character @var{c} in
906 the string @var{s}, or @code{NULL} if not found. The use of @code{rindex} is
907 deprecated in new programs in favor of @code{strrchr}.
912 @deftypefn Supplemental int setenv (const char *@var{name}, const char *@var{value}, int @var{overwrite})
913 @deftypefnx Supplemental void unsetenv (const char *@var{name})
915 @code{setenv} adds @var{name} to the environment with value
916 @var{value}. If the name was already present in the environment,
917 the new value will be stored only if @var{overwrite} is nonzero.
918 The companion @code{unsetenv} function removes @var{name} from the
919 environment. This implementation is not safe for multithreaded code.
924 @deftypefn Extension int signo_max (void)
926 Returns the maximum signal value for which a corresponding symbolic
927 name or message is available. Note that in the case where we use the
928 @code{sys_siglist} supplied by the system, it is possible for there to
929 be more symbolic names than messages, or vice versa. In fact, the
930 manual page for @code{psignal(3b)} explicitly warns that one should
931 check the size of the table (@code{NSIG}) before indexing it, since
932 new signal codes may be added to the system before they are added to
933 the table. Thus @code{NSIG} might be smaller than value implied by
934 the largest signo value defined in @code{<signal.h>}.
936 We return the maximum value that can be used to obtain a meaningful
937 symbolic name or message.
942 @deftypefn Supplemental int sigsetmask (int @var{set})
944 Sets the signal mask to the one provided in @var{set} and returns
945 the old mask (which, for libiberty's implementation, will always
946 be the value @code{1}).
951 @deftypefn Supplemental int snprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, ...)
953 This function is similar to sprintf, but it will print at most @var{n}
954 characters. On error the return value is -1, otherwise it returns the
955 number of characters that would have been printed had @var{n} been
956 sufficiently large, regardless of the actual value of @var{n}. Note
957 some pre-C99 system libraries do not implement this correctly so users
958 cannot generally rely on the return value if the system version of
959 this function is used.
964 @deftypefn Extension char* spaces (int @var{count})
966 Returns a pointer to a memory region filled with the specified
967 number of spaces and null terminated. The returned pointer is
968 valid until at least the next call.
973 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
975 Copies the string @var{src} into @var{dst}. Returns a pointer to
976 @var{dst} + strlen(@var{src}).
981 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, size_t @var{len})
983 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
984 and padding with zeros if necessary. If @var{len} < strlen(@var{src})
985 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
991 @deftypefn Supplemental int strcasecmp (const char *@var{s1}, const char *@var{s2})
993 A case-insensitive @code{strcmp}.
998 @deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
1000 Returns a pointer to the first occurrence of the character @var{c} in
1001 the string @var{s}, or @code{NULL} if not found. If @var{c} is itself the
1002 null character, the results are undefined.
1007 @deftypefn Supplemental char* strdup (const char *@var{s})
1009 Returns a pointer to a copy of @var{s} in memory obtained from
1010 @code{malloc}, or @code{NULL} if insufficient memory was available.
1015 @deftypefn Replacement {const char*} strerrno (int @var{errnum})
1017 Given an error number returned from a system call (typically returned
1018 in @code{errno}), returns a pointer to a string containing the
1019 symbolic name of that error number, as found in @code{<errno.h>}.
1021 If the supplied error number is within the valid range of indices for
1022 symbolic names, but no name is available for the particular error
1023 number, then returns the string @samp{Error @var{num}}, where @var{num}
1024 is the error number.
1026 If the supplied error number is not within the range of valid
1027 indices, then returns @code{NULL}.
1029 The contents of the location pointed to are only guaranteed to be
1030 valid until the next call to @code{strerrno}.
1035 @deftypefn Supplemental char* strerror (int @var{errnoval})
1037 Maps an @code{errno} number to an error message string, the contents
1038 of which are implementation defined. On systems which have the
1039 external variables @code{sys_nerr} and @code{sys_errlist}, these
1040 strings will be the same as the ones used by @code{perror}.
1042 If the supplied error number is within the valid range of indices for
1043 the @code{sys_errlist}, but no message is available for the particular
1044 error number, then returns the string @samp{Error @var{num}}, where
1045 @var{num} is the error number.
1047 If the supplied error number is not a valid index into
1048 @code{sys_errlist}, returns @code{NULL}.
1050 The returned string is only guaranteed to be valid only until the
1051 next call to @code{strerror}.
1056 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
1058 A case-insensitive @code{strncmp}.
1063 @deftypefn Supplemental int strncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n})
1065 Compares the first @var{n} bytes of two strings, returning a value as
1071 @deftypefn Extension char* strndup (const char *@var{s}, size_t @var{n})
1073 Returns a pointer to a copy of @var{s} with at most @var{n} characters
1074 in memory obtained from @code{malloc}, or @code{NULL} if insufficient
1075 memory was available. The result is always NUL terminated.
1080 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
1082 Returns a pointer to the last occurrence of the character @var{c} in
1083 the string @var{s}, or @code{NULL} if not found. If @var{c} is itself the
1084 null character, the results are undefined.
1089 @deftypefn Supplemental {const char *} strsignal (int @var{signo})
1091 Maps an signal number to an signal message string, the contents of
1092 which are implementation defined. On systems which have the external
1093 variable @code{sys_siglist}, these strings will be the same as the
1094 ones used by @code{psignal()}.
1096 If the supplied signal number is within the valid range of indices for
1097 the @code{sys_siglist}, but no message is available for the particular
1098 signal number, then returns the string @samp{Signal @var{num}}, where
1099 @var{num} is the signal number.
1101 If the supplied signal number is not a valid index into
1102 @code{sys_siglist}, returns @code{NULL}.
1104 The returned string is only guaranteed to be valid only until the next
1105 call to @code{strsignal}.
1110 @deftypefn Extension {const char*} strsigno (int @var{signo})
1112 Given an signal number, returns a pointer to a string containing the
1113 symbolic name of that signal number, as found in @code{<signal.h>}.
1115 If the supplied signal number is within the valid range of indices for
1116 symbolic names, but no name is available for the particular signal
1117 number, then returns the string @samp{Signal @var{num}}, where
1118 @var{num} is the signal number.
1120 If the supplied signal number is not within the range of valid
1121 indices, then returns @code{NULL}.
1123 The contents of the location pointed to are only guaranteed to be
1124 valid until the next call to @code{strsigno}.
1129 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
1131 This function searches for the substring @var{sub} in the string
1132 @var{string}, not including the terminating null characters. A pointer
1133 to the first occurrence of @var{sub} is returned, or @code{NULL} if the
1134 substring is absent. If @var{sub} points to a string with zero
1135 length, the function returns @var{string}.
1140 @deftypefn Supplemental double strtod (const char *@var{string}, char **@var{endptr})
1142 This ISO C function converts the initial portion of @var{string} to a
1143 @code{double}. If @var{endptr} is not @code{NULL}, a pointer to the
1144 character after the last character used in the conversion is stored in
1145 the location referenced by @var{endptr}. If no conversion is
1146 performed, zero is returned and the value of @var{string} is stored in
1147 the location referenced by @var{endptr}.
1152 @deftypefn Extension int strtoerrno (const char *@var{name})
1154 Given the symbolic name of a error number (e.g., @code{EACCES}), map it
1155 to an errno value. If no translation is found, returns 0.
1160 @deftypefn Supplemental {long int} strtol (const char *@var{string}, char **@var{endptr}, int @var{base})
1161 @deftypefnx Supplemental {unsigned long int} strtoul (const char *@var{string}, char **@var{endptr}, int @var{base})
1163 The @code{strtol} function converts the string in @var{string} to a
1164 long integer value according to the given @var{base}, which must be
1165 between 2 and 36 inclusive, or be the special value 0. If @var{base}
1166 is 0, @code{strtol} will look for the prefixes @code{0} and @code{0x}
1167 to indicate bases 8 and 16, respectively, else default to base 10.
1168 When the base is 16 (either explicitly or implicitly), a prefix of
1169 @code{0x} is allowed. The handling of @var{endptr} is as that of
1170 @code{strtod} above. The @code{strtoul} function is the same, except
1171 that the converted value is unsigned.
1176 @deftypefn Extension int strtosigno (const char *@var{name})
1178 Given the symbolic name of a signal, map it to a signal number. If no
1179 translation is found, returns 0.
1184 @deftypefn Supplemental char* tmpnam (char *@var{s})
1186 This function attempts to create a name for a temporary file, which
1187 will be a valid file name yet not exist when @code{tmpnam} checks for
1188 it. @var{s} must point to a buffer of at least @code{L_tmpnam} bytes,
1189 or be @code{NULL}. Use of this function creates a security risk, and it must
1190 not be used in new projects. Use @code{mkstemp} instead.
1194 @c unlink-if-ordinary.c:27
1195 @deftypefn Supplemental int unlink_if_ordinary (const char*)
1197 Unlinks the named file, unless it is special (e.g. a device file).
1198 Returns 0 when the file was unlinked, a negative value (and errno set) when
1199 there was an error deleting the file, and a positive value if no attempt
1200 was made to unlink the file because it is special.
1204 @c fopen_unlocked.c:23
1205 @deftypefn Extension void unlock_stream (FILE * @var{stream})
1207 If the OS supports it, ensure that the supplied stream is setup to
1208 avoid any multi-threaded locking. Otherwise leave the @code{FILE}
1209 pointer unchanged. If the @var{stream} is @code{NULL} do nothing.
1214 @deftypefn Extension int vasprintf (char **@var{resptr}, const char *@var{format}, va_list @var{args})
1216 Like @code{vsprintf}, but instead of passing a pointer to a buffer,
1217 you pass a pointer to a pointer. This function will compute the size
1218 of the buffer needed, allocate memory with @code{malloc}, and store a
1219 pointer to the allocated memory in @code{*@var{resptr}}. The value
1220 returned is the same as @code{vsprintf} would return. If memory could
1221 not be allocated, minus one is returned and @code{NULL} is stored in
1222 @code{*@var{resptr}}.
1227 @deftypefn Supplemental int vfork (void)
1229 Emulates @code{vfork} by calling @code{fork} and returning its value.
1234 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap})
1235 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, const char *@var{format}, va_list @var{ap})
1236 @deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap})
1238 These functions are the same as @code{printf}, @code{fprintf}, and
1239 @code{sprintf}, respectively, except that they are called with a
1240 @code{va_list} instead of a variable number of arguments. Note that
1241 they do not call @code{va_end}; this is the application's
1242 responsibility. In @libib{} they are implemented in terms of the
1243 nonstandard but common function @code{_doprnt}.
1248 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, va_list @var{ap})
1250 This function is similar to vsprintf, but it will print at most
1251 @var{n} characters. On error the return value is -1, otherwise it
1252 returns the number of characters that would have been printed had
1253 @var{n} been sufficiently large, regardless of the actual value of
1254 @var{n}. Note some pre-C99 system libraries do not implement this
1255 correctly so users cannot generally rely on the return value if the
1256 system version of this function is used.
1261 @deftypefn Supplemental int waitpid (int @var{pid}, int *@var{status}, int)
1263 This is a wrapper around the @code{wait} function. Any ``special''
1264 values of @var{pid} depend on your implementation of @code{wait}, as
1265 does the return value. The third argument is unused in @libib{}.
1270 @deftypefun int xatexit (void (*@var{fn}) (void))
1272 Behaves as the standard @code{atexit} function, but with no limit on
1273 the number of registered functions. Returns 0 on success, or @minus{}1 on
1274 failure. If you use @code{xatexit} to register functions, you must use
1275 @code{xexit} to terminate your program.
1280 @deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize})
1282 Allocate memory without fail, and set it to zero. This routine functions
1283 like @code{calloc}, but will behave the same as @code{xmalloc} if memory
1289 @deftypefn Replacement void xexit (int @var{code})
1291 Terminates the program. If any functions have been registered with
1292 the @code{xatexit} replacement function, they will be called first.
1293 Termination is handled via the system's normal @code{exit} call.
1298 @deftypefn Replacement void* xmalloc (size_t)
1300 Allocate memory without fail. If @code{malloc} fails, this will print
1301 a message to @code{stderr} (using the name set by
1302 @code{xmalloc_set_program_name},
1303 if any) and then call @code{xexit}. Note that it is therefore safe for
1304 a program to contain @code{#define malloc xmalloc} in its source.
1309 @deftypefn Replacement void xmalloc_failed (size_t)
1311 This function is not meant to be called by client code, and is listed
1312 here for completeness only. If any of the allocation routines fail, this
1313 function will be called to print an error message and terminate execution.
1318 @deftypefn Replacement void xmalloc_set_program_name (const char *@var{name})
1320 You can use this to set the name of the program used by
1321 @code{xmalloc_failed} when printing a failure message.
1326 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
1328 Duplicates a region of memory without fail. First, @var{alloc_size} bytes
1329 are allocated, then @var{copy_size} bytes from @var{input} are copied into
1330 it, and the new memory is returned. If fewer bytes are copied than were
1331 allocated, the remaining memory is zeroed.
1336 @deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
1337 Reallocate memory without fail. This routine functions like @code{realloc},
1338 but will behave the same as @code{xmalloc} if memory cannot be found.
1343 @deftypefn Replacement char* xstrdup (const char *@var{s})
1345 Duplicates a character string without fail, using @code{xmalloc} to
1351 @deftypefn Replacement char* xstrerror (int @var{errnum})
1353 Behaves exactly like the standard @code{strerror} function, but
1354 will never return a @code{NULL} pointer.
1359 @deftypefn Replacement char* xstrndup (const char *@var{s}, size_t @var{n})
1361 Returns a pointer to a copy of @var{s} with at most @var{n} characters
1362 without fail, using @code{xmalloc} to obtain memory. The result is
1363 always NUL terminated.