* real.c: Avoid parse error if FLOAT_WORDS_BIG_ENDIAN is
[official-gcc.git] / libiberty / functions.texi
blobb518243d95a6729c7603b29a749cf933ad4c37bb
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 alloca.c:26
7 @deftypefn Replacement void* alloca (size_t @var{size})
9 This function allocates memory which will be automatically reclaimed
10 after the procedure exits.  The @libib{} implementation does not free
11 the memory immediately but will do so eventually during subsequent
12 calls to this function.  Memory is allocated using @code{xmalloc} under
13 normal circumstances.
15 The header file @file{alloca-conf.h} can be used in conjunction with the
16 GNU Autoconf test @code{AC_FUNC_ALLOCA} to test for and properly make
17 available this function.  The @code{AC_FUNC_ALLOCA} test requires that
18 client code use a block of preprocessor code to be safe (see the Autoconf
19 manual for more); this header incorporates that logic and more, including
20 the possibility of a GCC built-in function.
22 @end deftypefn
24 @c asprintf.c:33
25 @deftypefn Extension int asprintf (char **@var{resptr}, const char *@var{format}, ...)
27 Like @code{sprintf}, but instead of passing a pointer to a buffer, you
28 pass a pointer to a pointer.  This function will compute the size of
29 the buffer needed, allocate memory with @code{malloc}, and store a
30 pointer to the allocated memory in @code{*@var{resptr}}.  The value
31 returned is the same as @code{sprintf} would return.  If memory could
32 not be allocated, zero is returned and @code{NULL} is stored in
33 @code{*@var{resptr}}.
35 @end deftypefn
37 @c atexit.c:6
38 @deftypefn Supplemental int atexit (void (*@var{f})())
40 Causes function @var{f} to be called at exit.  Returns 0.
42 @end deftypefn
44 @c basename.c:6
45 @deftypefn Supplemental char* basename (const char *@var{name})
47 Returns a pointer to the last component of pathname @var{name}.
48 Behavior is undefined if the pathname ends in a directory separator.
50 @end deftypefn
52 @c bcmp.c:6
53 @deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
55 Compares the first @var{count} bytes of two areas of memory.  Returns
56 zero if they are the same, nonzero otherwise.  Returns zero if
57 @var{count} is zero.  A nonzero result only indicates a difference,
58 it does not indicate any sorting order (say, by having a positive
59 result mean @var{x} sorts before @var{y}).
61 @end deftypefn
63 @c bcopy.c:3
64 @deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
66 Copies @var{length} bytes from memory region @var{in} to region
67 @var{out}.  The use of @code{bcopy} is deprecated in new programs.
69 @end deftypefn
71 @c bsearch.c:33
72 @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 *))
74 Performs a search over an array of @var{nmemb} elements pointed to by
75 @var{base} for a member that matches the object pointed to by @var{key}.
76 The size of each member is specified by @var{size}.  The array contents
77 should be sorted in ascending order according to the @var{compar}
78 comparison function.  This routine should take two arguments pointing to
79 the @var{key} and to an array member, in that order, and should return an
80 integer less than, equal to, or greater than zero if the @var{key} object
81 is respectively less than, matching, or greater than the array member.
83 @end deftypefn
85 @c argv.c:139
86 @deftypefn Extension char** buildargv (char *@var{sp})
88 Given a pointer to a string, parse the string extracting fields
89 separated by whitespace and optionally enclosed within either single
90 or double quotes (which are stripped off), and build a vector of
91 pointers to copies of the string for each field.  The input string
92 remains unchanged.  The last element of the vector is followed by a
93 @code{NULL} element.
95 All of the memory for the pointer array and copies of the string
96 is obtained from @code{malloc}.  All of the memory can be returned to the
97 system with the single function call @code{freeargv}, which takes the
98 returned result of @code{buildargv}, as it's argument.
100 Returns a pointer to the argument vector if successful.  Returns
101 @code{NULL} if @var{sp} is @code{NULL} or if there is insufficient
102 memory to complete building the argument vector.
104 If the input is a null string (as opposed to a @code{NULL} pointer),
105 then buildarg returns an argument vector that has one arg, a null
106 string.
108 @end deftypefn
110 @c bzero.c:6
111 @deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
113 Zeros @var{count} bytes starting at @var{mem}.  Use of this function
114 is deprecated in favor of @code{memset}.
116 @end deftypefn
118 @c calloc.c:6
119 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
121 Uses @code{malloc} to allocate storage for @var{nelem} objects of
122 @var{elsize} bytes each, then zeros the memory.
124 @end deftypefn
126 @c choose-temp.c:42
127 @deftypefn Extension char* choose_temp_base (void)
129 Return a prefix for temporary file names or @code{NULL} if unable to
130 find one.  The current directory is chosen if all else fails so the
131 program is exited if a temporary directory can't be found (@code{mktemp}
132 fails).  The buffer for the result is obtained with @code{xmalloc}.
134 This function is provided for backwards compatability only.  Its use is
135 not recommended.
137 @end deftypefn
139 @c make-temp-file.c:88
140 @deftypefn Replacement char* choose_tmpdir ()
142 Returns a pointer to a directory path suitable for creating temporary
143 files in.
145 @end deftypefn
147 @c clock.c:27
148 @deftypefn Supplemental long clock (void)
150 Returns an approximation of the CPU time used by the process as a
151 @code{clock_t}; divide this number by @samp{CLOCKS_PER_SEC} to get the
152 number of seconds used.
154 @end deftypefn
156 @c concat.c:24
157 @deftypefn Extension char* concat (const char *@var{s1}, const char *@var{s2}, @dots{}, @code{NULL})
159 Concatenate zero or more of strings and return the result in freshly
160 @code{xmalloc}ed memory.  Returns @code{NULL} if insufficient memory is
161 available.  The argument list is terminated by the first @code{NULL}
162 pointer encountered.  Pointers to empty strings are ignored.
164 @end deftypefn
166 @c argv.c:65
167 @deftypefn Extension char** dupargv (char **@var{vector})
169 Duplicate an argument vector.  Simply scans through @var{vector},
170 duplicating each argument until the terminating @code{NULL} is found.
171 Returns a pointer to the argument vector if successful.  Returns
172 @code{NULL} if there is insufficient memory to complete building the
173 argument vector.
175 @end deftypefn
177 @c strerror.c:566
178 @deftypefn Extension int errno_max (void)
180 Returns the maximum @code{errno} value for which a corresponding
181 symbolic name or message is available.  Note that in the case where we
182 use the @code{sys_errlist} supplied by the system, it is possible for
183 there to be more symbolic names than messages, or vice versa.  In
184 fact, the manual page for @code{perror(3C)} explicitly warns that one
185 should check the size of the table (@code{sys_nerr}) before indexing
186 it, since new error codes may be added to the system before they are
187 added to the table.  Thus @code{sys_nerr} might be smaller than value
188 implied by the largest @code{errno} value defined in @code{<errno.h>}.
190 We return the maximum value that can be used to obtain a meaningful
191 symbolic name or message.
193 @end deftypefn
195 @c fdmatch.c:23
196 @deftypefn Extension int fdmatch (int @var{fd1}, int @var{fd2})
198 Check to see if two open file descriptors refer to the same file.
199 This is useful, for example, when we have an open file descriptor for
200 an unnamed file, and the name of a file that we believe to correspond
201 to that fd.  This can happen when we are exec'd with an already open
202 file (@code{stdout} for example) or from the SVR4 @file{/proc} calls
203 that return open file descriptors for mapped address spaces.  All we
204 have to do is open the file by name and check the two file descriptors
205 for a match, which is done by comparing major and minor device numbers
206 and inode numbers.
208 @end deftypefn
210 @c ffs.c:3
211 @deftypefn Supplemental int ffs (int @var{valu})
213 Find the first (least significant) bit set in @var{valu}.  Bits are
214 numbered from right to left, starting with bit 1 (corresponding to the
215 value 1).  If @var{valu} is zero, zero is returned.
217 @end deftypefn
219 @c fnmatch.txh:1
220 @deftypefn Replacement int fnmatch (const char *@var{pattern}, const char *@var{string}, int @var{flags})
222 Matches @var{string} against @var{pattern}, returning zero if it
223 matches, @code{FNM_NOMATCH} if not.  @var{pattern} may contain the
224 wildcards @code{?} to match any one character, @code{*} to match any
225 zero or more characters, or a set of alternate characters in square
226 brackets, like @samp{[a-gt8]}, which match one character (@code{a}
227 through @code{g}, or @code{t}, or @code{8}, in this example) if that one
228 character is in the set.  A set may be inverted (i.e., match anything
229 except what's in the set) by giving @code{^} or @code{!} as the first
230 character in the set.  To include those characters in the set, list them
231 as anything other than the first character of the set.  To include a
232 dash in the set, list it last in the set.  A backslash character makes
233 the following character not special, so for example you could match
234 against a literal asterisk with @samp{\*}.  To match a literal
235 backslash, use @samp{\\}.
237 @code{flags} controls various aspects of the matching process, and is a
238 boolean OR of zero or more of the following values (defined in
239 @code{<fnmatch.h>}):
241 @table @code
243 @item FNM_PATHNAME
244 @itemx FNM_FILE_NAME
245 @var{string} is assumed to be a path name.  No wildcard will ever match
246 @code{/}.
248 @item FNM_NOESCAPE
249 Do not interpret backslashes as quoting the following special character.
251 @item FNM_PERIOD
252 A leading period (at the beginning of @var{string}, or if
253 @code{FNM_PATHNAME} after a slash) is not matched by @code{*} or
254 @code{?} but must be matched explicitly.
256 @item FNM_LEADING_DIR
257 Means that @var{string} also matches @var{pattern} if some initial part
258 of @var{string} matches, and is followed by @code{/} and zero or more
259 characters.  For example, @samp{foo*} would match either @samp{foobar}
260 or @samp{foobar/grill}.
262 @item FNM_CASEFOLD
263 Ignores case when performing the comparison.
265 @end table
267 @end deftypefn
269 @c argv.c:111
270 @deftypefn Extension void freeargv (char **@var{vector})
272 Free an argument vector that was built using @code{buildargv}.  Simply
273 scans through @var{vector}, freeing the memory for each argument until
274 the terminating @code{NULL} is found, and then frees @var{vector}
275 itself.
277 @end deftypefn
279 @c getruntime.c:78
280 @deftypefn Replacement long get_run_time (void)
282 Returns the time used so far, in microseconds.  If possible, this is
283 the time used by this process, else it is the elapsed time since the
284 process started.
286 @end deftypefn
288 @c getcwd.c:6
289 @deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len})
291 Copy the absolute pathname for the current working directory into
292 @var{pathname}, which is assumed to point to a buffer of at least
293 @var{len} bytes, and return a pointer to the buffer.  If the current
294 directory's path doesn't fit in @var{len} characters, the result is
295 @code{NULL} and @code{errno} is set.  If @var{pathname} is a null pointer,
296 @code{getcwd} will obtain @var{len} bytes of space using
297 @code{malloc}.
299 @end deftypefn
301 @c getpagesize.c:5
302 @deftypefn Supplemental int getpagesize (void)
304 Returns the number of bytes in a page of memory.  This is the
305 granularity of many of the system memory management routines.  No
306 guarantee is made as to whether or not it is the same as the basic
307 memory management hardware page size.
309 @end deftypefn
311 @c getpwd.c:5
312 @deftypefn Supplemental char* getpwd (void)
314 Returns the current working directory.  This implementation caches the
315 result on the assumption that the process will not call @code{chdir}
316 between calls to @code{getpwd}.
318 @end deftypefn
320 @c hex.c:25
321 @deftypefn Extension void hex_init (void)
323 Initializes the array mapping the current character set to
324 corresponding hex values.  This function must be called before any
325 call to @code{hex_p} or @code{hex_value}.
327 @end deftypefn
329 @c hex.c:33
330 @deftypefn Extension int hex_p (int @var{c})
332 Evaluates to non-zero if the given character is a valid hex character,
333 or zero if it is not.  Note that the value you pass will be cast to
334 @code{unsigned char} within the macro.
336 @end deftypefn
338 @c hex.c:41
339 @deftypefn Extension int hex_value (int @var{c})
341 Returns the numeric equivalent of the given character when interpreted
342 as a hexidecimal digit.  The result is undefined if you pass an
343 invalid hex digit.  Note that the value you pass will be cast to
344 @code{unsigned char} within the macro.
346 @end deftypefn
348 @c index.c:5
349 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
351 Returns a pointer to the first occurrence of the character @var{c} in
352 the string @var{s}, or @code{NULL} if not found.  The use of @code{index} is
353 deprecated in new programs in favor of @code{strchr}.
355 @end deftypefn
357 @c insque.c:6
358 @deftypefn Supplemental void insque (struct qelem *@var{elem}, struct qelem *@var{pred})
359 @deftypefnx Supplemental void remque (struct qelem *@var{elem})
361 Routines to manipulate queues built from doubly linked lists.  The
362 @code{insque} routine inserts @var{elem} in the queue immediately
363 after @var{pred}.  The @code{remque} routine removes @var{elem} from
364 its containing queue.  These routines expect to be passed pointers to
365 structures which have as their first members a forward pointer and a
366 back pointer, like this prototype (although no prototype is provided):
368 @example
369 struct qelem @{
370   struct qelem *q_forw;
371   struct qelem *q_back;
372   char q_data[];
374 @end example
376 @end deftypefn
378 @c lbasename.c:23
379 @deftypefn Replacement {const char*} lbasename (const char *@var{name})
381 Given a pointer to a string containing a typical pathname
382 (@samp{/usr/src/cmd/ls/ls.c} for example), returns a pointer to the
383 last component of the pathname (@samp{ls.c} in this case).  The
384 returned pointer is guaranteed to lie within the original
385 string.  This latter fact is not true of many vendor C
386 libraries, which return special strings or modify the passed
387 strings for particular input.
389 In particular, the empty string returns the same empty string,
390 and a path ending in @code{/} returns the empty string after it.
392 @end deftypefn
394 @c make-temp-file.c:138
395 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
397 Return a temporary file name (as a string) or @code{NULL} if unable to
398 create one.  @var{suffix} is a suffix to append to the file name.  The
399 string is @code{malloc}ed, and the temporary file has been created.
401 @end deftypefn
403 @c memchr.c:3
404 @deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, size_t @var{n})
406 This function searches memory starting at @code{*@var{s}} for the
407 character @var{c}.  The search only ends with the first occurrence of
408 @var{c}, or after @var{length} characters; in particular, a null
409 character does not terminate the search.  If the character @var{c} is
410 found within @var{length} characters of @code{*@var{s}}, a pointer
411 to the character is returned.  If @var{c} is not found, then @code{NULL} is
412 returned.
414 @end deftypefn
416 @c memcmp.c:6
417 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, size_t @var{count})
419 Compares the first @var{count} bytes of two areas of memory.  Returns
420 zero if they are the same, a value less than zero if @var{x} is
421 lexically less than @var{y}, or a value greater than zero if @var{x}
422 is lexically greater than @var{y}.  Note that lexical order is determined
423 as if comparing unsigned char arrays.
425 @end deftypefn
427 @c memcpy.c:6
428 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
430 Copies @var{length} bytes from memory region @var{in} to region
431 @var{out}.  Returns a pointer to @var{out}.
433 @end deftypefn
435 @c memmove.c:6
436 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count})
438 Copies @var{count} bytes from memory area @var{from} to memory area
439 @var{to}, returning a pointer to @var{to}.
441 @end deftypefn
443 @c memset.c:6
444 @deftypefn Supplemental void* memset (void *@var{s}, int @var{c}, size_t @var{count})
446 Sets the first @var{count} bytes of @var{s} to the constant byte
447 @var{c}, returning a pointer to @var{s}.
449 @end deftypefn
451 @c mkstemps.c:54
452 @deftypefn Replacement int mkstemps (char *@var{template}, int @var{suffix_len})
454 Generate a unique temporary file name from @var{template}.
455 @var{template} has the form:
457 @example
458    @var{path}/ccXXXXXX@var{suffix}
459 @end example
461 @var{suffix_len} tells us how long @var{suffix} is (it can be zero
462 length).  The last six characters of @var{template} before @var{suffix}
463 must be @samp{XXXXXX}; they are replaced with a string that makes the
464 filename unique.  Returns a file descriptor open on the file for
465 reading and writing.
467 @end deftypefn
469 @c pexecute.c:67
470 @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)
472 Executes a program.
474 @var{program} and @var{argv} are the arguments to
475 @code{execv}/@code{execvp}.
477 @var{this_pname} is name of the calling program (i.e., @code{argv[0]}).
479 @var{temp_base} is the path name, sans suffix, of a temporary file to
480 use if needed.  This is currently only needed for MS-DOS ports that
481 don't use @code{go32} (do any still exist?).  Ports that don't need it
482 can pass @code{NULL}.
484 (@code{@var{flags} & PEXECUTE_SEARCH}) is non-zero if @env{PATH} should be searched
485 (??? It's not clear that GCC passes this flag correctly).  (@code{@var{flags} &
486 PEXECUTE_FIRST}) is nonzero for the first process in chain.
487 (@code{@var{flags} & PEXECUTE_FIRST}) is nonzero for the last process
488 in chain.  The first/last flags could be simplified to only mark the
489 last of a chain of processes but that requires the caller to always
490 mark the last one (and not give up early if some error occurs).
491 It's more robust to require the caller to mark both ends of the chain.
493 The result is the pid on systems like Unix where we
494 @code{fork}/@code{exec} and on systems like WIN32 and OS/2 where we
495 use @code{spawn}.  It is up to the caller to wait for the child.
497 The result is the @code{WEXITSTATUS} on systems like MS-DOS where we
498 @code{spawn} and wait for the child here.
500 Upon failure, @var{errmsg_fmt} and @var{errmsg_arg} are set to the
501 text of the error message with an optional argument (if not needed,
502 @var{errmsg_arg} is set to @code{NULL}), and @minus{}1 is returned.
503 @code{errno} is available to the caller to use.
505 @end deftypefn
507 @c strsignal.c:547
508 @deftypefn Supplemental void psignal (unsigned @var{signo}, char *@var{message})
510 Print @var{message} to the standard error, followed by a colon,
511 followed by the description of the signal specified by @var{signo},
512 followed by a newline.
514 @end deftypefn
516 @c putenv.c:21
517 @deftypefn Supplemental int putenv (const char *@var{string})
519 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
520 the environment or remove it.  If @var{string} is of the form
521 @samp{name=value} the string is added; if no @samp{=} is present the
522 name is unset/removed.
524 @end deftypefn
526 @c pexecute.c:104
527 @deftypefn Extension int pwait (int @var{pid}, int *@var{status}, int @var{flags})
529 Waits for a program started by @code{pexecute} to finish.
531 @var{pid} is the process id of the task to wait for. @var{status} is
532 the `status' argument to wait. @var{flags} is currently unused (allows
533 future enhancement without breaking upward compatibility).  Pass 0 for now.
535 The result is the pid of the child reaped, or -1 for failure
536 (@code{errno} says why).
538 On systems that don't support waiting for a particular child, @var{pid} is
539 ignored.  On systems like MS-DOS that don't really multitask @code{pwait}
540 is just a mechanism to provide a consistent interface for the caller.
542 @end deftypefn
544 @c random.c:39
545 @deftypefn Supplement {long int} random (void)
546 @deftypefnx Supplement void srandom (unsigned int @var{seed})
547 @deftypefnx Supplement void* initstate (unsigned int @var{seed}, void *@var{arg_state}, unsigned long @var{n})
548 @deftypefnx Supplement void* setstate (void *@var{arg_state})
550 Random number functions.  @code{random} returns a random number in the
551 range 0 to @code{LONG_MAX}.  @code{srandom} initializes the random
552 number generator to some starting point determined by @var{seed}
553 (else, the values returned by @code{random} are always the same for each
554 run of the program).  @code{initstate} and @code{setstate} allow fine-grained
555 control over the state of the random number generator.
557 @end deftypefn
559 @c concat.c:177
560 @deftypefn Extension char* reconcat (char *@var{optr}, const char *@var{s1}, @dots{}, @code{NULL})
562 Same as @code{concat}, except that if @var{optr} is not @code{NULL} it
563 is freed after the string is created.  This is intended to be useful
564 when you're extending an existing string or building up a string in a
565 loop:
567 @example
568   str = reconcat (str, "pre-", str, NULL);
569 @end example
571 @end deftypefn
573 @c rename.c:6
574 @deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new})
576 Renames a file from @var{old} to @var{new}.  If @var{new} already
577 exists, it is removed.
579 @end deftypefn
581 @c rindex.c:5
582 @deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})
584 Returns a pointer to the last occurrence of the character @var{c} in
585 the string @var{s}, or @code{NULL} if not found.  The use of @code{rindex} is
586 deprecated in new programs in favor of @code{strrchr}.
588 @end deftypefn
590 @c setenv.c:22
591 @deftypefn Supplemental int setenv (const char *@var{name}, const char *@var{value}, int @var{overwrite})
592 @deftypefnx Supplemental void unsetenv (const char *@var{name})
594 @code{setenv} adds @var{name} to the environment with value
595 @var{value}.  If the name was already present in the environment,
596 the new value will be stored only if @var{overwrite} is nonzero.
597 The companion @code{unsetenv} function removes @var{name} from the
598 environment.  This implementation is not safe for multithreaded code.
600 @end deftypefn
602 @c strsignal.c:353
603 @deftypefn Extension int signo_max (void)
605 Returns the maximum signal value for which a corresponding symbolic
606 name or message is available.  Note that in the case where we use the
607 @code{sys_siglist} supplied by the system, it is possible for there to
608 be more symbolic names than messages, or vice versa.  In fact, the
609 manual page for @code{psignal(3b)} explicitly warns that one should
610 check the size of the table (@code{NSIG}) before indexing it, since
611 new signal codes may be added to the system before they are added to
612 the table.  Thus @code{NSIG} might be smaller than value implied by
613 the largest signo value defined in @code{<signal.h>}.
615 We return the maximum value that can be used to obtain a meaningful
616 symbolic name or message.
618 @end deftypefn
620 @c sigsetmask.c:8
621 @deftypefn Supplemental int sigsetmask (int @var{set})
623 Sets the signal mask to the one provided in @var{set} and returns
624 the old mask (which, for libiberty's implementation, will always
625 be the value @code{1}).
627 @end deftypefn
629 @c spaces.c:22
630 @deftypefn Extension char* spaces (int @var{count})
632 Returns a pointer to a memory region filled with the specified
633 number of spaces and null terminated.  The returned pointer is
634 valid until at least the next call.
636 @end deftypefn
638 @c strcasecmp.c:15
639 @deftypefn Supplemental int strcasecmp (const char *@var{s1}, const char *@var{s2})
641 A case-insensitive @code{strcmp}.
643 @end deftypefn
645 @c strchr.c:6
646 @deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
648 Returns a pointer to the first occurrence of the character @var{c} in
649 the string @var{s}, or @code{NULL} if not found.  If @var{c} is itself the
650 null character, the results are undefined.
652 @end deftypefn
654 @c strdup.c:3
655 @deftypefn Supplemental char* strdup (const char *@var{s})
657 Returns a pointer to a copy of @var{s} in memory obtained from
658 @code{malloc}, or @code{NULL} if insufficient memory was available.
660 @end deftypefn
662 @c strerror.c:670
663 @deftypefn Replacement {const char*} strerrno (int @var{errnum})
665 Given an error number returned from a system call (typically returned
666 in @code{errno}), returns a pointer to a string containing the
667 symbolic name of that error number, as found in @code{<errno.h>}.
669 If the supplied error number is within the valid range of indices for
670 symbolic names, but no name is available for the particular error
671 number, then returns the string @samp{Error @var{num}}, where @var{num}
672 is the error number.
674 If the supplied error number is not within the range of valid
675 indices, then returns @code{NULL}.
677 The contents of the location pointed to are only guaranteed to be
678 valid until the next call to @code{strerrno}.
680 @end deftypefn
682 @c strerror.c:602
683 @deftypefn Supplemental char* strerror (int @var{errnoval})
685 Maps an @code{errno} number to an error message string, the contents
686 of which are implementation defined.  On systems which have the
687 external variables @code{sys_nerr} and @code{sys_errlist}, these
688 strings will be the same as the ones used by @code{perror}.
690 If the supplied error number is within the valid range of indices for
691 the @code{sys_errlist}, but no message is available for the particular
692 error number, then returns the string @samp{Error @var{num}}, where
693 @var{num} is the error number.
695 If the supplied error number is not a valid index into
696 @code{sys_errlist}, returns @code{NULL}.
698 The returned string is only guaranteed to be valid only until the
699 next call to @code{strerror}.
701 @end deftypefn
703 @c strncasecmp.c:15
704 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
706 A case-insensitive @code{strncmp}.
708 @end deftypefn
710 @c strncmp.c:6
711 @deftypefn Supplemental int strncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n})
713 Compares the first @var{n} bytes of two strings, returning a value as
714 @code{strcmp}.
716 @end deftypefn
718 @c strrchr.c:6
719 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
721 Returns a pointer to the last occurrence of the character @var{c} in
722 the string @var{s}, or @code{NULL} if not found.  If @var{c} is itself the
723 null character, the results are undefined.
725 @end deftypefn
727 @c strsignal.c:388
728 @deftypefn Supplemental {const char *} strsignal (int @var{signo})
730 Maps an signal number to an signal message string, the contents of
731 which are implementation defined.  On systems which have the external
732 variable @code{sys_siglist}, these strings will be the same as the
733 ones used by @code{psignal()}.
735 If the supplied signal number is within the valid range of indices for
736 the @code{sys_siglist}, but no message is available for the particular
737 signal number, then returns the string @samp{Signal @var{num}}, where
738 @var{num} is the signal number.
740 If the supplied signal number is not a valid index into
741 @code{sys_siglist}, returns @code{NULL}.
743 The returned string is only guaranteed to be valid only until the next
744 call to @code{strsignal}.
746 @end deftypefn
748 @c strsignal.c:452
749 @deftypefn Extension {const char*} strsigno (int @var{signo})
751 Given an signal number, returns a pointer to a string containing the
752 symbolic name of that signal number, as found in @code{<signal.h>}.
754 If the supplied signal number is within the valid range of indices for
755 symbolic names, but no name is available for the particular signal
756 number, then returns the string @samp{Signal @var{num}}, where
757 @var{num} is the signal number.
759 If the supplied signal number is not within the range of valid
760 indices, then returns @code{NULL}.
762 The contents of the location pointed to are only guaranteed to be
763 valid until the next call to @code{strsigno}.
765 @end deftypefn
767 @c strstr.c:6
768 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
770 This function searches for the substring @var{sub} in the string
771 @var{string}, not including the terminating null characters.  A pointer
772 to the first occurrence of @var{sub} is returned, or @code{NULL} if the
773 substring is absent.  If @var{sub} points to a string with zero
774 length, the function returns @var{string}.
776 @end deftypefn
778 @c strtod.c:27
779 @deftypefn Supplemental double strtod (const char *@var{string}, char **@var{endptr})
781 This ISO C function converts the initial portion of @var{string} to a
782 @code{double}.  If @var{endptr} is not @code{NULL}, a pointer to the
783 character after the last character used in the conversion is stored in
784 the location referenced by @var{endptr}.  If no conversion is
785 performed, zero is returned and the value of @var{string} is stored in
786 the location referenced by @var{endptr}.
788 @end deftypefn
790 @c strerror.c:730
791 @deftypefn Extension int strtoerrno (const char *@var{name})
793 Given the symbolic name of a error number (e.g., @code{EACCES}), map it
794 to an errno value.  If no translation is found, returns 0.
796 @end deftypefn
798 @c strtol.c:33
799 @deftypefn Supplemental {long int} strtol (const char *@var{string}, char **@var{endptr}, int @var{base})
800 @deftypefnx Supplemental {unsigned long int} strtoul (const char *@var{string}, char **@var{endptr}, int @var{base})
802 The @code{strtol} function converts the string in @var{string} to a
803 long integer value according to the given @var{base}, which must be
804 between 2 and 36 inclusive, or be the special value 0.  If @var{base}
805 is 0, @code{strtol} will look for the prefixes @code{0} and @code{0x}
806 to indicate bases 8 and 16, respectively, else default to base 10.
807 When the base is 16 (either explicitly or implicitly), a prefix of
808 @code{0x} is allowed.  The handling of @var{endptr} is as that of
809 @code{strtod} above.  The @code{strtoul} function is the same, except
810 that the converted value is unsigned.
812 @end deftypefn
814 @c strsignal.c:507
815 @deftypefn Extension int strtosigno (const char *@var{name})
817 Given the symbolic name of a signal, map it to a signal number.  If no
818 translation is found, returns 0.
820 @end deftypefn
822 @c tmpnam.c:3
823 @deftypefn Supplemental char* tmpnam (char *@var{s})
825 This function attempts to create a name for a temporary file, which
826 will be a valid file name yet not exist when @code{tmpnam} checks for
827 it.  @var{s} must point to a buffer of at least @code{L_tmpnam} bytes,
828 or be @code{NULL}.  Use of this function creates a security risk, and it must
829 not be used in new projects.  Use @code{mkstemp} instead.
831 @end deftypefn
833 @c vasprintf.c:48
834 @deftypefn Extension int vasprintf (char **@var{resptr}, const char *@var{format}, va_list @var{args})
836 Like @code{vsprintf}, but instead of passing a pointer to a buffer,
837 you pass a pointer to a pointer.  This function will compute the size
838 of the buffer needed, allocate memory with @code{malloc}, and store a
839 pointer to the allocated memory in @code{*@var{resptr}}.  The value
840 returned is the same as @code{vsprintf} would return.  If memory could
841 not be allocated, zero is returned and @code{NULL} is stored in
842 @code{*@var{resptr}}.
844 @end deftypefn
846 @c vfork.c:6
847 @deftypefn Supplemental int vfork (void)
849 Emulates @code{vfork} by calling @code{fork} and returning its value.
851 @end deftypefn
853 @c vprintf.c:3
854 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap})
855 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, const char *@var{format}, va_list @var{ap})
856 @deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap})
858 These functions are the same as @code{printf}, @code{fprintf}, and
859 @code{sprintf}, respectively, except that they are called with a
860 @code{va_list} instead of a variable number of arguments.  Note that
861 they do not call @code{va_end}; this is the application's
862 responsibility.  In @libib{} they are implemented in terms of the
863 nonstandard but common function @code{_doprnt}.
865 @end deftypefn
867 @c waitpid.c:3
868 @deftypefn Supplemental int waitpid (int @var{pid}, int *@var{status}, int)
870 This is a wrapper around the @code{wait} function.  Any ``special''
871 values of @var{pid} depend on your implementation of @code{wait}, as
872 does the return value.  The third argument is unused in @libib{}.
874 @end deftypefn
876 @c xatexit.c:11
877 @deftypefun int xatexit (void (*@var{fn}) (void))
879 Behaves as the standard @code{atexit} function, but with no limit on
880 the number of registered functions.  Returns 0 on success, or @minus{}1 on
881 failure.  If you use @code{xatexit} to register functions, you must use
882 @code{xexit} to terminate your program.
884 @end deftypefun
886 @c xmalloc.c:38
887 @deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize})
889 Allocate memory without fail, and set it to zero.  This routine functions
890 like @code{calloc}, but will behave the same as @code{xmalloc} if memory
891 cannot be found.
893 @end deftypefn
895 @c xexit.c:22
896 @deftypefn Replacement void xexit (int @var{code})
898 Terminates the program.  If any functions have been registered with
899 the @code{xatexit} replacement function, they will be called first.
900 Termination is handled via the system's normal @code{exit} call.
902 @end deftypefn
904 @c xmalloc.c:22
905 @deftypefn Replacement void* xmalloc (size_t)
907 Allocate memory without fail.  If @code{malloc} fails, this will print
908 a message to @code{stderr} (using the name set by
909 @code{xmalloc_set_program_name},
910 if any) and then call @code{xexit}.  Note that it is therefore safe for
911 a program to contain @code{#define malloc xmalloc} in its source.
913 @end deftypefn
915 @c xmalloc.c:53
916 @deftypefn Replacement void xmalloc_failed (size_t)
918 This function is not meant to be called by client code, and is listed
919 here for completeness only.  If any of the allocation routines fail, this
920 function will be called to print an error message and terminate execution.
922 @end deftypefn
924 @c xmalloc.c:46
925 @deftypefn Replacement void xmalloc_set_program_name (const char *@var{name})
927 You can use this to set the name of the program used by
928 @code{xmalloc_failed} when printing a failure message.
930 @end deftypefn
932 @c xmemdup.c:7
933 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
935 Duplicates a region of memory without fail.  First, @var{alloc_size} bytes
936 are allocated, then @var{copy_size} bytes from @var{input} are copied into
937 it, and the new memory is returned.  If fewer bytes are copied than were
938 allocated, the remaining memory is zeroed.
940 @end deftypefn
942 @c xmalloc.c:32
943 @deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
944 Reallocate memory without fail.  This routine functions like @code{realloc},
945 but will behave the same as @code{xmalloc} if memory cannot be found.
947 @end deftypefn
949 @c xstrdup.c:7
950 @deftypefn Replacement char* xstrdup (const char *@var{s})
952 Duplicates a character string without fail, using @code{xmalloc} to
953 obtain memory.
955 @end deftypefn
957 @c xstrerror.c:7
958 @deftypefn Replacement char* xstrerror (int @var{errnum})
960 Behaves exactly like the standard @code{strerror} function, but
961 will never return a @code{NULL} pointer.
963 @end deftypefn