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