stdlib.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* stdlib.h */
  2. #ifndef __STDLIB_H
  3. #define __STDLIB_H
  4. #include <features.h>
  5. #include <sys/types.h>
  6. #include <limits.h>
  7. /* Don't overwrite user definitions of NULL */
  8. #ifndef NULL
  9. #define NULL ((void *) 0)
  10. #endif
  11. /* We define these the same for all machines.
  12. * Changes from this to the outside world should be done in `_exit'. */
  13. #define EXIT_FAILURE 1 /* Failing exit status. */
  14. #define EXIT_SUCCESS 0 /* Successful exit status. */
  15. /* The largest number rand will return */
  16. #define RAND_MAX INT_MAX
  17. /* Maximum length of a multibyte character in the current locale. */
  18. #define MB_CUR_MAX 1
  19. typedef struct
  20. {
  21. int quot; /* Quotient. */
  22. int rem; /* Remainder. */
  23. } div_t;
  24. typedef struct
  25. {
  26. long int quot; /* Quotient. */
  27. long int rem; /* Remainder. */
  28. } ldiv_t;
  29. /* comparison function used by bsearch() and qsort() */
  30. typedef int (*__compar_fn_t) __P ((__const __ptr_t, __const __ptr_t));
  31. typedef __compar_fn_t comparison_fn_t;
  32. /* String to number conversion functions */
  33. #define atof(x) strtod((x),(char**)0)
  34. #define atoi(x) (int)strtol((x),(char**)0,10)
  35. #define atol(x) strtol((x),(char**)0,10)
  36. #define atoll(x) strtoll((x),(char**)0,10)
  37. extern long strtol __P ((const char * nptr, char ** endptr, int base));
  38. extern unsigned long strtoul __P ((const char * nptr, char ** endptr, int base));
  39. extern long long strtoll __P ((const char * nptr, char ** endptr, int base));
  40. extern unsigned long long strtoull __P ((const char * nptr, char ** endptr, int base));
  41. #ifdef __UCLIBC_HAS_FLOATS__
  42. /*TODO: extern char * gcvt __P ((double number, size_t ndigit, char * buf)); */
  43. extern double strtod __P ((const char * nptr, char ** endptr));
  44. #endif
  45. /* Random number functions */
  46. extern int rand __P ((void));
  47. extern void srand __P ((unsigned int seed));
  48. extern long int random(void);
  49. extern void srandom(unsigned int seed);
  50. /* Memory management functions */
  51. extern __ptr_t calloc __P ((size_t, size_t));
  52. extern __ptr_t malloc __P ((size_t));
  53. extern __ptr_t realloc __P ((__ptr_t, size_t));
  54. extern void free __P ((__ptr_t));
  55. /* Allocate a block on the stack that will be freed
  56. * when the calling function exits. We use gcc's
  57. * version to make life better... */
  58. #undef alloca
  59. extern __ptr_t alloca __P ((size_t __size));
  60. #define alloca(size) __builtin_alloca (size)
  61. #ifdef DEBUG_MALLOC
  62. extern __ptr_t calloc_dbg __P ((size_t, size_t, char* func, char* file, int line));
  63. extern __ptr_t malloc_dbg __P ((size_t, char* func, char* file, int line));
  64. extern __ptr_t realloc_dbg __P ((__ptr_t, size_t, char* func, char* file, int line));
  65. extern void free_dbg __P ((__ptr_t, char* func, char* file, int line));
  66. #define calloc(x,y) calloc_dbg((x),(y),__FUNCTION__,__FILE__,__LINE__)
  67. #define malloc(x) malloc_dbg((x),__FUNCTION__,__FILE__,__LINE__)
  68. #define realloc(x) realloc((x),__FUNCTION__,__FILE__,__LINE__)
  69. #define free(x) free_dbg((x),__FUNCTION__,__FILE__,__LINE__)
  70. #endif
  71. /* System and environment functions */
  72. extern void abort __P ((void)) __attribute__ ((__noreturn__));
  73. extern int atexit __P ((void (*__func) (void)));
  74. extern void exit __P ((int __status)) __attribute__ ((__noreturn__));
  75. extern void _exit __P ((int __status)) __attribute__ ((__noreturn__));
  76. extern char *getenv __P ((__const char *__name));
  77. extern int putenv __P ((__const char *__string));
  78. extern char *realpath __P ((__const char *__restrict __name,
  79. char *__restrict __resolved));
  80. extern int setenv __P ((__const char *__name, __const char *__value,
  81. int __replace));
  82. extern int system __P ((__const char *__command));
  83. extern void unsetenv __P ((__const char *__name));
  84. /* The following is used by uClibc in atexit.c and sysconf.c */
  85. #define __UCLIBC_MAX_ATEXIT 20
  86. /* Search and sort functions */
  87. extern __ptr_t bsearch __P ((__const __ptr_t __key, __const __ptr_t __base,
  88. size_t __nmemb, size_t __size, __compar_fn_t __compar));
  89. extern void qsort __P ((__ptr_t __base, size_t __nmemb, size_t __size,
  90. __compar_fn_t __compar));
  91. /* Integer math functions */
  92. extern int abs __P ((int __x)) __attribute__ ((__const__));
  93. extern div_t div __P ((int __numer, int __denom)) __attribute__ ((__const__));
  94. extern long int labs __P ((long int __x)) __attribute__ ((__const__));
  95. extern ldiv_t ldiv __P ((long int __numer, long int __denom)) __attribute__ ((__const__));
  96. /* Generate a unique temporary file name from TEMPLATE. */
  97. extern char *mktemp __P ((char *__template));
  98. extern int mkstemp __P ((char *__template));
  99. #endif /* __STDLIB_H */