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