stdlib.h 4.5 KB

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