home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / include / libiberty.h < prev    next >
C/C++ Source or Header  |  1995-12-28  |  4KB  |  134 lines

  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.  
  13. #include "ansidecl.h"
  14.  
  15. /* Build an argument vector from a string.  Allocates memory using
  16.    malloc.  Use freeargv to free the vector.  */
  17.  
  18. extern char **buildargv PARAMS ((char *));
  19.  
  20. /* Free a vector returned by buildargv.  */
  21.  
  22. extern void freeargv PARAMS ((char **));
  23.  
  24. /* Return the last component of a path name.  */
  25.  
  26. extern char *basename ();
  27.  
  28. /* Concatenate an arbitrary number of strings, up to (char *) NULL.
  29.    Allocates memory using xmalloc.  */
  30.  
  31. extern char *concat PARAMS ((const char *, ...));
  32.  
  33. /* Check whether two file descriptors refer to the same file.  */
  34.  
  35. extern int fdmatch PARAMS ((int fd1, int fd2));
  36.  
  37. /* Get the amount of time the process has run, in microseconds.  */
  38.  
  39. extern long get_run_time PARAMS ((void));
  40.  
  41. /* Allocate memory filled with spaces.  Allocates using malloc.  */
  42.  
  43. extern const char *spaces PARAMS ((int count));
  44.  
  45. /* Return the maximum error number for which strerror will return a
  46.    string.  */
  47.  
  48. extern int errno_max PARAMS ((void));
  49.  
  50. /* Return the name of an errno value (e.g., strerrno (EINVAL) returns
  51.    "EINVAL").  */
  52.  
  53. extern const char *strerrno PARAMS ((int));
  54.  
  55. /* Given the name of an errno value, return the value.  */
  56.  
  57. extern int strtoerrno PARAMS ((const char *));
  58.  
  59. /* ANSI's strerror(), but more robust.  */
  60.  
  61. extern char *xstrerror PARAMS ((int));
  62.  
  63. /* Return the maximum signal number for which strsignal will return a
  64.    string.  */
  65.  
  66. extern int signo_max PARAMS ((void));
  67.  
  68. /* Return a signal message string for a signal number
  69.    (e.g., strsignal (SIGHUP) returns something like "Hangup").  */
  70. /* This is commented out as it can conflict with one in system headers.
  71.    We still document its existence though.  */
  72.  
  73. /*extern const char *strsignal PARAMS ((int));*/
  74.  
  75. /* Return the name of a signal number (e.g., strsigno (SIGHUP) returns
  76.    "SIGHUP").  */
  77.  
  78. extern const char *strsigno PARAMS ((int));
  79.  
  80. /* Given the name of a signal, return its number.  */
  81.  
  82. extern int strtosigno PARAMS ((const char *));
  83.  
  84. /* Register a function to be run by xexit.  Returns 0 on success.  */
  85.  
  86. extern int xatexit PARAMS ((void (*fn) (void)));
  87.  
  88. /* Exit, calling all the functions registered with xatexit.  */
  89.  
  90. #ifndef __GNUC__
  91. extern void xexit PARAMS ((int status));
  92. #else
  93. typedef void libiberty_voidfn PARAMS ((int status));
  94. __volatile__ libiberty_voidfn xexit;
  95. #endif
  96.  
  97. /* Set the program name used by xmalloc.  */
  98.  
  99. extern void xmalloc_set_program_name PARAMS ((const char *));
  100.  
  101. /* Allocate memory without fail.  If malloc fails, this will print a
  102.    message to stderr (using the name set by xmalloc_set_program_name,
  103.    if any) and then call xexit.
  104.  
  105.    FIXME: We do not declare the parameter type (size_t) in order to
  106.    avoid conflicts with other declarations of xmalloc that exist in
  107.    programs which use libiberty.  */
  108.  
  109. extern PTR xmalloc ();
  110.  
  111. /* Reallocate memory without fail.  This works like xmalloc.
  112.  
  113.    FIXME: We do not declare the parameter types for the same reason as
  114.    xmalloc.  */
  115.  
  116. extern PTR xrealloc ();
  117.  
  118. /* Copy a string into a memory buffer without fail.  */
  119.  
  120. extern char *xstrdup PARAMS ((const char *));
  121.  
  122. /* hex character manipulation routines */
  123.  
  124. #define _hex_array_size 256
  125. #define _hex_bad    99
  126. extern char _hex_value[_hex_array_size];
  127. extern void hex_init PARAMS ((void));
  128. #define hex_p(c)    (hex_value (c) != _hex_bad)
  129. /* If you change this, note well: Some code relies on side effects in
  130.    the argument being performed exactly once.  */
  131. #define hex_value(c)    (_hex_value[(unsigned char) (c)])
  132.  
  133. #endif /* ! defined (LIBIBERTY_H) */
  134.