libiberty.h
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:8k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* Function declarations for libiberty.
  2.    Copyright 2001 Free Software Foundation, Inc.
  3.    
  4.    Note - certain prototypes declared in this header file are for
  5.    functions whoes implementation copyright does not belong to the
  6.    FSF.  Those prototypes are present in this file for reference
  7.    purposes only and their presence in this file should not construed
  8.    as an indication of ownership by the FSF of the implementation of
  9.    those functions in any way or form whatsoever.
  10.    This program is free software; you can redistribute it and/or modify
  11.    it under the terms of the GNU General Public License as published by
  12.    the Free Software Foundation; either version 2, or (at your option)
  13.    any later version.
  14.    This program is distributed in the hope that it will be useful,
  15.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.    GNU General Public License for more details.
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place - Suite 330,
  21.    Boston, MA 02111-1307, USA.
  22.    
  23.    Written by Cygnus Support, 1994.
  24.    The libiberty library provides a number of functions which are
  25.    missing on some operating systems.  We do not declare those here,
  26.    to avoid conflicts with the system header files on operating
  27.    systems that do support those functions.  In this file we only
  28.    declare those functions which are specific to libiberty.  */
  29. #ifndef LIBIBERTY_H
  30. #define LIBIBERTY_H
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. #include "ansidecl.h"
  35. #ifdef ANSI_PROTOTYPES
  36. /* Get a definition for size_t.  */
  37. #include <stddef.h>
  38. /* Get a definition for va_list.  */
  39. #include <stdarg.h>
  40. #endif
  41. /* Build an argument vector from a string.  Allocates memory using
  42.    malloc.  Use freeargv to free the vector.  */
  43. extern char **buildargv PARAMS ((char *)) ATTRIBUTE_MALLOC;
  44. /* Free a vector returned by buildargv.  */
  45. extern void freeargv PARAMS ((char **));
  46. /* Duplicate an argument vector. Allocates memory using malloc.  Use
  47.    freeargv to free the vector.  */
  48. extern char **dupargv PARAMS ((char **)) ATTRIBUTE_MALLOC;
  49. /* Return the last component of a path name.  Note that we can't use a
  50.    prototype here because the parameter is declared inconsistently
  51.    across different systems, sometimes as "char *" and sometimes as
  52.    "const char *" */
  53. /* HAVE_DECL_* is a three-state macro: undefined, 0 or 1.  If it is
  54.    undefined, we haven't run the autoconf check so provide the
  55.    declaration without arguments.  If it is 0, we checked and failed
  56.    to find the declaration so provide a fully prototyped one.  If it
  57.    is 1, we found it so don't provide any declaration at all.  */
  58. #if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__) || (defined (HAVE_DECL_BASENAME) && !HAVE_DECL_BASENAME)
  59. extern char *basename PARAMS ((const char *));
  60. #else
  61. # if !defined (HAVE_DECL_BASENAME)
  62. extern char *basename ();
  63. # endif
  64. #endif
  65. /* Concatenate an arbitrary number of strings, up to (char *) NULL.
  66.    Allocates memory using xmalloc.  */
  67. extern char *concat PARAMS ((const char *, ...)) ATTRIBUTE_MALLOC;
  68. /* Check whether two file descriptors refer to the same file.  */
  69. extern int fdmatch PARAMS ((int fd1, int fd2));
  70. /* Get the working directory.  The result is cached, so don't call
  71.    chdir() between calls to getpwd().  */
  72. extern char * getpwd PARAMS ((void));
  73. /* Get the amount of time the process has run, in microseconds.  */
  74. extern long get_run_time PARAMS ((void));
  75. /* Choose a temporary directory to use for scratch files.  */
  76. extern char *choose_temp_base PARAMS ((void)) ATTRIBUTE_MALLOC;
  77. /* Return a temporary file name or NULL if unable to create one.  */
  78. extern char *make_temp_file PARAMS ((const char *)) ATTRIBUTE_MALLOC;
  79. /* Allocate memory filled with spaces.  Allocates using malloc.  */
  80. extern const char *spaces PARAMS ((int count));
  81. /* Return the maximum error number for which strerror will return a
  82.    string.  */
  83. extern int errno_max PARAMS ((void));
  84. /* Return the name of an errno value (e.g., strerrno (EINVAL) returns
  85.    "EINVAL").  */
  86. extern const char *strerrno PARAMS ((int));
  87. /* Given the name of an errno value, return the value.  */
  88. extern int strtoerrno PARAMS ((const char *));
  89. /* ANSI's strerror(), but more robust.  */
  90. extern char *xstrerror PARAMS ((int));
  91. /* Return the maximum signal number for which strsignal will return a
  92.    string.  */
  93. extern int signo_max PARAMS ((void));
  94. /* Return a signal message string for a signal number
  95.    (e.g., strsignal (SIGHUP) returns something like "Hangup").  */
  96. /* This is commented out as it can conflict with one in system headers.
  97.    We still document its existence though.  */
  98. /*extern const char *strsignal PARAMS ((int));*/
  99. /* Return the name of a signal number (e.g., strsigno (SIGHUP) returns
  100.    "SIGHUP").  */
  101. extern const char *strsigno PARAMS ((int));
  102. /* Given the name of a signal, return its number.  */
  103. extern int strtosigno PARAMS ((const char *));
  104. /* Register a function to be run by xexit.  Returns 0 on success.  */
  105. extern int xatexit PARAMS ((void (*fn) (void)));
  106. /* Exit, calling all the functions registered with xatexit.  */
  107. extern void xexit PARAMS ((int status)) ATTRIBUTE_NORETURN;
  108. /* Set the program name used by xmalloc.  */
  109. extern void xmalloc_set_program_name PARAMS ((const char *));
  110. /* Report an allocation failure.  */
  111. extern void xmalloc_failed PARAMS ((size_t)) ATTRIBUTE_NORETURN;
  112. /* Allocate memory without fail.  If malloc fails, this will print a
  113.    message to stderr (using the name set by xmalloc_set_program_name,
  114.    if any) and then call xexit.  */
  115. extern PTR xmalloc PARAMS ((size_t)) ATTRIBUTE_MALLOC;
  116. /* Reallocate memory without fail.  This works like xmalloc.  Note,
  117.    realloc type functions are not suitable for attribute malloc since
  118.    they may return the same address across multiple calls. */
  119. extern PTR xrealloc PARAMS ((PTR, size_t));
  120. /* Allocate memory without fail and set it to zero.  This works like
  121.    xmalloc.  */
  122. extern PTR xcalloc PARAMS ((size_t, size_t)) ATTRIBUTE_MALLOC;
  123. /* Copy a string into a memory buffer without fail.  */
  124. extern char *xstrdup PARAMS ((const char *)) ATTRIBUTE_MALLOC;
  125. /* Copy an existing memory buffer to a new memory buffer without fail.  */
  126. extern PTR xmemdup PARAMS ((const PTR, size_t, size_t)) ATTRIBUTE_MALLOC;
  127. /* hex character manipulation routines */
  128. #define _hex_array_size 256
  129. #define _hex_bad 99
  130. extern char _hex_value[_hex_array_size];
  131. extern void hex_init PARAMS ((void));
  132. #define hex_p(c) (hex_value (c) != _hex_bad)
  133. /* If you change this, note well: Some code relies on side effects in
  134.    the argument being performed exactly once.  */
  135. #define hex_value(c) (_hex_value[(unsigned char) (c)])
  136. /* Definitions used by the pexecute routine.  */
  137. #define PEXECUTE_FIRST   1
  138. #define PEXECUTE_LAST    2
  139. #define PEXECUTE_ONE     (PEXECUTE_FIRST + PEXECUTE_LAST)
  140. #define PEXECUTE_SEARCH  4
  141. #define PEXECUTE_VERBOSE 8
  142. /* Execute a program.  */
  143. extern int pexecute PARAMS ((const char *, char * const *, const char *,
  144.     const char *, char **, char **, int));
  145. /* Wait for pexecute to finish.  */
  146. extern int pwait PARAMS ((int, int *, int));
  147. /* Like sprintf but provides a pointer to malloc'd storage, which must
  148.    be freed by the caller.  */
  149. extern int asprintf PARAMS ((char **, const char *, ...)) ATTRIBUTE_PRINTF_2;
  150. /* Like vsprintf but provides a pointer to malloc'd storage, which
  151.    must be freed by the caller.  */
  152. extern int vasprintf PARAMS ((char **, const char *, va_list))
  153.   ATTRIBUTE_PRINTF(2,0);
  154. #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
  155. #ifdef __cplusplus
  156. }
  157. #endif
  158. #endif /* ! defined (LIBIBERTY_H) */