libc/include/libiberty.h

389 lines
13 KiB
C
Raw Normal View History

1999-05-03 09:29:06 +02:00
/* Function declarations for libiberty.
2002-01-28 23:03:14 +01:00
Copyright 2001, 2002 Free Software Foundation, Inc.
Note - certain prototypes declared in this header file are for
functions whoes implementation copyright does not belong to the
FSF. Those prototypes are present in this file for reference
purposes only and their presence in this file should not construed
as an indication of ownership by the FSF of the implementation of
those functions in any way or form whatsoever.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
1999-05-03 09:29:06 +02:00
Written by Cygnus Support, 1994.
The libiberty library provides a number of functions which are
missing on some operating systems. We do not declare those here,
to avoid conflicts with the system header files on operating
systems that do support those functions. In this file we only
declare those functions which are specific to libiberty. */
#ifndef LIBIBERTY_H
#define LIBIBERTY_H
#ifdef __cplusplus
extern "C" {
#endif
#include "ansidecl.h"
/* Get a definition for size_t. */
#include <stddef.h>
/* Get a definition for va_list. */
#include <stdarg.h>
1999-05-03 09:29:06 +02:00
/* Build an argument vector from a string. Allocates memory using
malloc. Use freeargv to free the vector. */
2005-03-27 07:28:29 +02:00
extern char **buildargv (const char *) ATTRIBUTE_MALLOC;
1999-05-03 09:29:06 +02:00
/* Free a vector returned by buildargv. */
2005-03-27 07:28:29 +02:00
extern void freeargv (char **);
1999-05-03 09:29:06 +02:00
/* Duplicate an argument vector. Allocates memory using malloc. Use
freeargv to free the vector. */
2005-03-27 07:28:29 +02:00
extern char **dupargv (char **) ATTRIBUTE_MALLOC;
1999-05-03 09:29:06 +02:00
/* Return the last component of a path name. Note that we can't use a
prototype here because the parameter is declared inconsistently
across different systems, sometimes as "char *" and sometimes as
"const char *" */
/* HAVE_DECL_* is a three-state macro: undefined, 0 or 1. If it is
undefined, we haven't run the autoconf check so provide the
declaration without arguments. If it is 0, we checked and failed
to find the declaration so provide a fully prototyped one. If it
is 1, we found it so don't provide any declaration at all. */
2002-06-24 19:39:28 +02:00
#if !HAVE_DECL_BASENAME
2004-09-14 03:16:22 +02:00
#if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__OpenBSD__) || defined(__NetBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__) || defined (__MINGW32__) || defined (HAVE_DECL_BASENAME)
2005-03-27 07:28:29 +02:00
extern char *basename (const char *);
1999-05-03 09:29:06 +02:00
#else
extern char *basename ();
2002-06-24 19:39:28 +02:00
#endif
1999-05-03 09:29:06 +02:00
#endif
2001-03-10 23:23:16 +01:00
/* A well-defined basename () that is always compiled in. */
2005-03-27 07:28:29 +02:00
extern const char *lbasename (const char *);
2001-03-10 23:23:16 +01:00
/* A well-defined realpath () that is always compiled in. */
2005-03-27 07:28:29 +02:00
extern char *lrealpath (const char *);
2001-09-18 23:02:02 +02:00
/* Concatenate an arbitrary number of strings. You must pass NULL as
the last argument of this function, to terminate the list of
strings. Allocates memory using xmalloc. */
1999-05-03 09:29:06 +02:00
2005-03-27 07:28:29 +02:00
extern char *concat (const char *, ...) ATTRIBUTE_MALLOC ATTRIBUTE_SENTINEL;
1999-05-03 09:29:06 +02:00
2001-09-25 01:37:30 +02:00
/* Concatenate an arbitrary number of strings. You must pass NULL as
the last argument of this function, to terminate the list of
strings. Allocates memory using xmalloc. The first argument is
not one of the strings to be concatenated, but if not NULL is a
pointer to be freed after the new string is created, similar to the
way xrealloc works. */
2005-03-27 07:28:29 +02:00
extern char *reconcat (char *, const char *, ...) ATTRIBUTE_MALLOC ATTRIBUTE_SENTINEL;
2001-09-25 01:37:30 +02:00
2001-09-18 01:10:37 +02:00
/* Determine the length of concatenating an arbitrary number of
2001-09-18 23:02:02 +02:00
strings. You must pass NULL as the last argument of this function,
to terminate the list of strings. */
2001-09-18 01:10:37 +02:00
2005-03-27 07:28:29 +02:00
extern unsigned long concat_length (const char *, ...) ATTRIBUTE_SENTINEL;
2001-09-18 01:10:37 +02:00
/* Concatenate an arbitrary number of strings into a SUPPLIED area of
2001-09-18 23:02:02 +02:00
memory. You must pass NULL as the last argument of this function,
to terminate the list of strings. The supplied memory is assumed
to be large enough. */
2001-09-18 01:10:37 +02:00
2005-03-27 07:28:29 +02:00
extern char *concat_copy (char *, const char *, ...) ATTRIBUTE_SENTINEL;
2001-09-18 01:10:37 +02:00
/* Concatenate an arbitrary number of strings into a GLOBAL area of
2001-09-18 23:02:02 +02:00
memory. You must pass NULL as the last argument of this function,
to terminate the list of strings. The supplied memory is assumed
to be large enough. */
2001-09-18 01:10:37 +02:00
2005-03-27 07:28:29 +02:00
extern char *concat_copy2 (const char *, ...) ATTRIBUTE_SENTINEL;
2001-09-18 01:10:37 +02:00
/* This is the global area used by concat_copy2. */
extern char *libiberty_concat_ptr;
2001-09-18 23:02:02 +02:00
/* Concatenate an arbitrary number of strings. You must pass NULL as
the last argument of this function, to terminate the list of
strings. Allocates memory using alloca. The arguments are
evaluated twice! */
2001-09-18 01:10:37 +02:00
#define ACONCAT(ACONCAT_PARAMS) \
(libiberty_concat_ptr = alloca (concat_length ACONCAT_PARAMS + 1), \
concat_copy2 ACONCAT_PARAMS)
1999-05-03 09:29:06 +02:00
/* Check whether two file descriptors refer to the same file. */
2005-03-27 07:28:29 +02:00
extern int fdmatch (int fd1, int fd2);
1999-05-03 09:29:06 +02:00
/* Return the position of the first bit set in the argument. */
/* Prototypes vary from system to system, so we only provide a
prototype on systems where we know that we need it. */
#if defined (HAVE_DECL_FFS) && !HAVE_DECL_FFS
extern int ffs(int);
#endif
2000-02-22 17:18:13 +01:00
/* Get the working directory. The result is cached, so don't call
chdir() between calls to getpwd(). */
2005-03-27 07:28:29 +02:00
extern char * getpwd (void);
2000-02-22 17:18:13 +01:00
2005-03-10 02:05:51 +01:00
/* Get the current time. */
/* Prototypes vary from system to system, so we only provide a
prototype on systems where we know that we need it. */
#ifdef __MINGW32__
/* Forward declaration to avoid #include <sys/time.h>. */
struct timeval;
2005-03-27 07:28:29 +02:00
extern int gettimeofday (struct timeval *, void *);
2005-03-10 02:05:51 +01:00
#endif
1999-05-03 09:29:06 +02:00
/* Get the amount of time the process has run, in microseconds. */
2005-03-27 07:28:29 +02:00
extern long get_run_time (void);
1999-05-03 09:29:06 +02:00
2002-11-22 22:02:07 +01:00
/* Generate a relocated path to some installation directory. Allocates
return value using malloc. */
2005-03-27 07:28:29 +02:00
extern char *make_relative_prefix (const char *, const char *,
const char *) ATTRIBUTE_MALLOC;
2002-11-22 22:02:07 +01:00
1999-05-03 09:29:06 +02:00
/* Choose a temporary directory to use for scratch files. */
2005-03-27 07:28:29 +02:00
extern char *choose_temp_base (void) ATTRIBUTE_MALLOC;
2000-02-22 17:18:13 +01:00
/* Return a temporary file name or NULL if unable to create one. */
2005-03-27 07:28:29 +02:00
extern char *make_temp_file (const char *) ATTRIBUTE_MALLOC;
1999-05-03 09:29:06 +02:00
2005-03-01 15:32:34 +01:00
/* Remove a link to a file unless it is special. */
2005-03-27 07:28:29 +02:00
extern int unlink_if_ordinary (const char *);
2005-03-01 15:32:34 +01:00
1999-05-03 09:29:06 +02:00
/* Allocate memory filled with spaces. Allocates using malloc. */
2005-03-27 07:28:29 +02:00
extern const char *spaces (int count);
1999-05-03 09:29:06 +02:00
/* Return the maximum error number for which strerror will return a
string. */
2005-03-27 07:28:29 +02:00
extern int errno_max (void);
1999-05-03 09:29:06 +02:00
/* Return the name of an errno value (e.g., strerrno (EINVAL) returns
"EINVAL"). */
2005-03-27 07:28:29 +02:00
extern const char *strerrno (int);
1999-05-03 09:29:06 +02:00
/* Given the name of an errno value, return the value. */
2005-03-27 07:28:29 +02:00
extern int strtoerrno (const char *);
1999-05-03 09:29:06 +02:00
/* ANSI's strerror(), but more robust. */
2005-03-27 07:28:29 +02:00
extern char *xstrerror (int);
1999-05-03 09:29:06 +02:00
/* Return the maximum signal number for which strsignal will return a
string. */
2005-03-27 07:28:29 +02:00
extern int signo_max (void);
1999-05-03 09:29:06 +02:00
/* Return a signal message string for a signal number
(e.g., strsignal (SIGHUP) returns something like "Hangup"). */
/* This is commented out as it can conflict with one in system headers.
We still document its existence though. */
2005-03-27 07:28:29 +02:00
/*extern const char *strsignal (int);*/
1999-05-03 09:29:06 +02:00
/* Return the name of a signal number (e.g., strsigno (SIGHUP) returns
"SIGHUP"). */
2005-03-27 07:28:29 +02:00
extern const char *strsigno (int);
1999-05-03 09:29:06 +02:00
/* Given the name of a signal, return its number. */
2005-03-27 07:28:29 +02:00
extern int strtosigno (const char *);
1999-05-03 09:29:06 +02:00
/* Register a function to be run by xexit. Returns 0 on success. */
2005-03-27 07:28:29 +02:00
extern int xatexit (void (*fn) (void));
1999-05-03 09:29:06 +02:00
/* Exit, calling all the functions registered with xatexit. */
2005-03-27 07:28:29 +02:00
extern void xexit (int status) ATTRIBUTE_NORETURN;
1999-05-03 09:29:06 +02:00
/* Set the program name used by xmalloc. */
2005-03-27 07:28:29 +02:00
extern void xmalloc_set_program_name (const char *);
1999-05-03 09:29:06 +02:00
/* Report an allocation failure. */
2005-03-27 07:28:29 +02:00
extern void xmalloc_failed (size_t) ATTRIBUTE_NORETURN;
1999-05-03 09:29:06 +02:00
/* Allocate memory without fail. If malloc fails, this will print a
message to stderr (using the name set by xmalloc_set_program_name,
if any) and then call xexit. */
2005-03-27 07:28:29 +02:00
extern PTR xmalloc (size_t) ATTRIBUTE_MALLOC;
1999-05-03 09:29:06 +02:00
2000-02-22 17:18:13 +01:00
/* Reallocate memory without fail. This works like xmalloc. Note,
realloc type functions are not suitable for attribute malloc since
they may return the same address across multiple calls. */
1999-05-03 09:29:06 +02:00
2005-03-27 07:28:29 +02:00
extern PTR xrealloc (PTR, size_t);
1999-05-03 09:29:06 +02:00
/* Allocate memory without fail and set it to zero. This works like
xmalloc. */
2005-03-27 07:28:29 +02:00
extern PTR xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
1999-05-03 09:29:06 +02:00
/* Copy a string into a memory buffer without fail. */
2005-03-27 07:28:29 +02:00
extern char *xstrdup (const char *) ATTRIBUTE_MALLOC;
2000-02-22 17:18:13 +01:00
2005-03-25 05:57:00 +01:00
/* Copy at most N characters from string into a buffer without fail. */
2005-03-27 07:28:29 +02:00
extern char *xstrndup (const char *, size_t) ATTRIBUTE_MALLOC;
2005-03-25 05:57:00 +01:00
2000-02-22 17:18:13 +01:00
/* Copy an existing memory buffer to a new memory buffer without fail. */
2005-03-27 07:28:29 +02:00
extern PTR xmemdup (const PTR, size_t, size_t) ATTRIBUTE_MALLOC;
1999-05-03 09:29:06 +02:00
2003-02-27 22:01:01 +01:00
/* Physical memory routines. Return values are in BYTES. */
2005-03-27 07:28:29 +02:00
extern double physmem_total (void);
extern double physmem_available (void);
2003-02-21 02:35:25 +01:00
2004-07-24 20:04:39 +02:00
/* These macros provide a K&R/C89/C++-friendly way of allocating structures
with nice encapsulation. The XDELETE*() macros are technically
superfluous, but provided here for symmetry. Using them consistently
makes it easier to update client code to use different allocators such
as new/delete and new[]/delete[]. */
/* Scalar allocators. */
#define XNEW(T) ((T *) xmalloc (sizeof (T)))
#define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
2004-08-06 17:38:11 +02:00
#define XDELETE(P) free ((void*) (P))
2004-07-24 20:04:39 +02:00
/* Array allocators. */
#define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N)))
#define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
2004-08-06 17:38:11 +02:00
#define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
#define XDELETEVEC(P) free ((void*) (P))
2004-07-24 20:04:39 +02:00
/* Allocators for variable-sized structures and raw buffers. */
#define XNEWVAR(T, S) ((T *) xmalloc ((S)))
#define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
#define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
/* Type-safe obstack allocator. */
#define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T)))
1999-05-03 09:29:06 +02:00
/* hex character manipulation routines */
#define _hex_array_size 256
#define _hex_bad 99
extern const unsigned char _hex_value[_hex_array_size];
2005-03-27 07:28:29 +02:00
extern void hex_init (void);
1999-05-03 09:29:06 +02:00
#define hex_p(c) (hex_value (c) != _hex_bad)
/* If you change this, note well: Some code relies on side effects in
the argument being performed exactly once. */
#define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)])
1999-05-03 09:29:06 +02:00
/* Definitions used by the pexecute routine. */
#define PEXECUTE_FIRST 1
#define PEXECUTE_LAST 2
#define PEXECUTE_ONE (PEXECUTE_FIRST + PEXECUTE_LAST)
#define PEXECUTE_SEARCH 4
#define PEXECUTE_VERBOSE 8
/* Execute a program. */
2005-03-27 07:28:29 +02:00
extern int pexecute (const char *, char * const *, const char *,
const char *, char **, char **, int);
1999-05-03 09:29:06 +02:00
/* Wait for pexecute to finish. */
2005-03-27 07:28:29 +02:00
extern int pwait (int, int *, int);
1999-05-03 09:29:06 +02:00
#if !HAVE_DECL_ASPRINTF
2000-02-22 17:18:13 +01:00
/* Like sprintf but provides a pointer to malloc'd storage, which must
be freed by the caller. */
2005-03-27 07:28:29 +02:00
extern int asprintf (char **, const char *, ...) ATTRIBUTE_PRINTF_2;
#endif
2000-02-22 17:18:13 +01:00
#if !HAVE_DECL_VASPRINTF
2000-02-22 17:18:13 +01:00
/* Like vsprintf but provides a pointer to malloc'd storage, which
must be freed by the caller. */
2005-03-27 07:28:29 +02:00
extern int vasprintf (char **, const char *, va_list)
2000-02-22 17:18:13 +01:00
ATTRIBUTE_PRINTF(2,0);
#endif
2000-02-22 17:18:13 +01:00
2000-09-03 19:35:07 +02:00
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
2001-03-06 19:26:32 +01:00
/* Drastically simplified alloca configurator. If we're using GCC,
we use __builtin_alloca; otherwise we use the C alloca. The C
alloca is always available. You can override GCC by defining
2001-03-31 21:05:20 +02:00
USE_C_ALLOCA yourself. The canonical autoconf macro C_ALLOCA is
also set/unset as it is often used to indicate whether code needs
to call alloca(0). */
2005-03-27 07:28:29 +02:00
extern PTR C_alloca (size_t) ATTRIBUTE_MALLOC;
2001-03-06 19:26:32 +01:00
#undef alloca
#if GCC_VERSION >= 2000 && !defined USE_C_ALLOCA
# define alloca(x) __builtin_alloca(x)
2001-03-31 21:05:20 +02:00
# undef C_ALLOCA
2001-09-18 01:10:37 +02:00
# define ASTRDUP(X) \
(__extension__ ({ const char *const libiberty_optr = (X); \
const unsigned long libiberty_len = strlen (libiberty_optr) + 1; \
2004-07-13 23:10:23 +02:00
char *const libiberty_nptr = (char *const) alloca (libiberty_len); \
2001-09-18 01:10:37 +02:00
(char *) memcpy (libiberty_nptr, libiberty_optr, libiberty_len); }))
2001-03-06 19:26:32 +01:00
#else
# define alloca(x) C_alloca(x)
# undef USE_C_ALLOCA
# define USE_C_ALLOCA 1
2001-03-31 21:05:20 +02:00
# undef C_ALLOCA
# define C_ALLOCA 1
2001-09-18 01:10:37 +02:00
extern const char *libiberty_optr;
extern char *libiberty_nptr;
extern unsigned long libiberty_len;
# define ASTRDUP(X) \
(libiberty_optr = (X), \
libiberty_len = strlen (libiberty_optr) + 1, \
2004-07-13 23:10:23 +02:00
libiberty_nptr = (char *) alloca (libiberty_len), \
2001-09-18 01:10:37 +02:00
(char *) memcpy (libiberty_nptr, libiberty_optr, libiberty_len))
2001-03-06 19:26:32 +01:00
#endif
1999-05-03 09:29:06 +02:00
#ifdef __cplusplus
}
#endif
#endif /* ! defined (LIBIBERTY_H) */