]> git.ipfire.org Git - thirdparty/gcc.git/blame - include/libiberty.h
calls.c (special_function_p): Remove `realloc' and add `strdup' to the list of functi...
[thirdparty/gcc.git] / include / libiberty.h
CommitLineData
6599da04
JM
1/* Function declarations for libiberty.
2 Written by Cygnus Support, 1994.
3
4 The libiberty library provides a number of functions which are
5 missing on some operating systems. We do not declare those here,
6 to avoid conflicts with the system header files on operating
7 systems that do support those functions. In this file we only
8 declare those functions which are specific to libiberty. */
9
10#ifndef LIBIBERTY_H
11#define LIBIBERTY_H
12
5a4917e5
JL
13#ifdef __cplusplus
14extern "C" {
15#endif
16
6599da04
JM
17#include "ansidecl.h"
18
19/* Build an argument vector from a string. Allocates memory using
20 malloc. Use freeargv to free the vector. */
21
22extern char **buildargv PARAMS ((char *));
23
24/* Free a vector returned by buildargv. */
25
26extern void freeargv PARAMS ((char **));
27
5a4917e5
JL
28/* Duplicate an argument vector. Allocates memory using malloc. Use
29 freeargv to free the vector. */
30
31extern char **dupargv PARAMS ((char **));
32
33
6599da04
JM
34/* Return the last component of a path name. Note that we can't use a
35 prototype here because the parameter is declared inconsistently
36 across different systems, sometimes as "char *" and sometimes as
37 "const char *" */
38
2ac2226c 39#if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__)
6599da04
JM
40extern char *basename PARAMS ((const char *));
41#else
42extern char *basename ();
43#endif
44
45/* Concatenate an arbitrary number of strings, up to (char *) NULL.
46 Allocates memory using xmalloc. */
47
48extern char *concat PARAMS ((const char *, ...));
49
50/* Check whether two file descriptors refer to the same file. */
51
52extern int fdmatch PARAMS ((int fd1, int fd2));
53
25c29e1e
KG
54/* Get the working directory. The result is cached, so don't call
55 chdir() between calls to getpwd(). */
56
57extern char * getpwd PARAMS ((void));
58
6599da04
JM
59/* Get the amount of time the process has run, in microseconds. */
60
61extern long get_run_time PARAMS ((void));
62
63/* Choose a temporary directory to use for scratch files. */
64
65extern char *choose_temp_base PARAMS ((void));
66
5a657fc3
KG
67/* Return a temporary file name or NULL if unable to create one. */
68
69extern char *make_temp_file PARAMS ((const char *));
70
6599da04
JM
71/* Allocate memory filled with spaces. Allocates using malloc. */
72
73extern const char *spaces PARAMS ((int count));
74
75/* Return the maximum error number for which strerror will return a
76 string. */
77
78extern int errno_max PARAMS ((void));
79
80/* Return the name of an errno value (e.g., strerrno (EINVAL) returns
81 "EINVAL"). */
82
83extern const char *strerrno PARAMS ((int));
84
85/* Given the name of an errno value, return the value. */
86
87extern int strtoerrno PARAMS ((const char *));
88
89/* ANSI's strerror(), but more robust. */
90
91extern char *xstrerror PARAMS ((int));
92
93/* Return the maximum signal number for which strsignal will return a
94 string. */
95
96extern int signo_max PARAMS ((void));
97
98/* Return a signal message string for a signal number
99 (e.g., strsignal (SIGHUP) returns something like "Hangup"). */
100/* This is commented out as it can conflict with one in system headers.
101 We still document its existence though. */
102
103/*extern const char *strsignal PARAMS ((int));*/
104
105/* Return the name of a signal number (e.g., strsigno (SIGHUP) returns
106 "SIGHUP"). */
107
108extern const char *strsigno PARAMS ((int));
109
110/* Given the name of a signal, return its number. */
111
112extern int strtosigno PARAMS ((const char *));
113
114/* Register a function to be run by xexit. Returns 0 on success. */
115
116extern int xatexit PARAMS ((void (*fn) (void)));
117
118/* Exit, calling all the functions registered with xatexit. */
119
120#ifndef __GNUC__
121extern void xexit PARAMS ((int status));
122#else
36af8b65 123void xexit PARAMS ((int status)) __attribute__ ((noreturn));
6599da04
JM
124#endif
125
126/* Set the program name used by xmalloc. */
127
128extern void xmalloc_set_program_name PARAMS ((const char *));
129
130/* Allocate memory without fail. If malloc fails, this will print a
131 message to stderr (using the name set by xmalloc_set_program_name,
132 if any) and then call xexit. */
133
134#ifdef ANSI_PROTOTYPES
135/* Get a definition for size_t. */
136#include <stddef.h>
146e60a0
KG
137/* Get a definition for va_list. */
138#include <stdarg.h>
6599da04
JM
139#endif
140extern PTR xmalloc PARAMS ((size_t));
141
2ac2226c 142/* Reallocate memory without fail. This works like xmalloc. */
6599da04
JM
143
144extern PTR xrealloc PARAMS ((PTR, size_t));
145
67d0f6ab
KG
146/* Allocate memory without fail and set it to zero. This works like
147 xmalloc. */
148
149extern PTR xcalloc PARAMS ((size_t, size_t));
150
6599da04
JM
151/* Copy a string into a memory buffer without fail. */
152
153extern char *xstrdup PARAMS ((const char *));
154
66599806
JG
155/* Copy an existing memory buffer to a new memory buffer without fail. */
156
157extern PTR xmemdup PARAMS ((const PTR, size_t, size_t));
158
6599da04
JM
159/* hex character manipulation routines */
160
161#define _hex_array_size 256
162#define _hex_bad 99
163extern char _hex_value[_hex_array_size];
164extern void hex_init PARAMS ((void));
165#define hex_p(c) (hex_value (c) != _hex_bad)
166/* If you change this, note well: Some code relies on side effects in
167 the argument being performed exactly once. */
168#define hex_value(c) (_hex_value[(unsigned char) (c)])
169
170/* Definitions used by the pexecute routine. */
171
172#define PEXECUTE_FIRST 1
173#define PEXECUTE_LAST 2
174#define PEXECUTE_ONE (PEXECUTE_FIRST + PEXECUTE_LAST)
175#define PEXECUTE_SEARCH 4
176#define PEXECUTE_VERBOSE 8
177
178/* Execute a program. */
179
180extern int pexecute PARAMS ((const char *, char * const *, const char *,
181 const char *, char **, char **, int));
182
183/* Wait for pexecute to finish. */
184
185extern int pwait PARAMS ((int, int *, int));
186
146e60a0
KG
187/* Like sprintf but provides a pointer to malloc'd storage, which must
188 be freed by the caller. */
189
190extern int asprintf PARAMS ((char **, const char *, ...)) ATTRIBUTE_PRINTF_2;
191
192/* Like vsprintf but provides a pointer to malloc'd storage, which
193 must be freed by the caller. */
194
195extern int vasprintf PARAMS ((char **, const char *, va_list))
196 ATTRIBUTE_PRINTF(2,0);
197
5a4917e5
JL
198#ifdef __cplusplus
199}
200#endif
201
202
6599da04 203#endif /* ! defined (LIBIBERTY_H) */