home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / STDLIB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  4.1 KB  |  132 lines

  1. /*      stdlib.h
  2.  
  3.         Definitions for common types, variables, and functions.
  4.  
  5.         Copyright (c) Borland International 1987,1988
  6.         All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl  cdecl
  12. #endif
  13.  
  14. #if     !defined(__STDLIB)
  15. #define __STDLIB
  16.  
  17. #ifndef _SIZE_T
  18. #define _SIZE_T
  19. typedef unsigned size_t;
  20. #endif
  21.  
  22. #ifndef _DIV_T
  23. #define _DIV_T
  24. typedef struct {
  25.         int     quot;
  26.         int     rem;
  27. } div_t;
  28. #endif
  29.  
  30. #ifndef _LDIV_T
  31. #define _LDIV_T
  32. typedef struct {
  33.         long    quot;
  34.         long    rem;
  35. } ldiv_t;
  36. #endif
  37.  
  38. #define EXIT_SUCCESS 0
  39. #define EXIT_FAILURE 1
  40.  
  41. /* Maximum value returned by "rand" function
  42. */
  43. #define RAND_MAX 0x7FFF
  44.  
  45. typedef void _Cdecl (* atexit_t)(void);
  46.  
  47. void    _Cdecl abort  (void);
  48. int     _Cdecl abs    (int x);
  49. int     _Cdecl atexit (atexit_t func);
  50. double  _Cdecl atof   (const char *s);
  51. int     _Cdecl atoi   (const char *s);
  52. long    _Cdecl atol   (const char *s);
  53. void   *_Cdecl bsearch(const void *key, const void *base, 
  54.                        size_t nelem, size_t width,
  55.                        int _Cdecl (*fcmp)(/* const void *, const void * */));
  56. void   *_Cdecl calloc (size_t nitems, size_t size);
  57. div_t   _Cdecl div    (int numer, int denom);
  58. void    _Cdecl exit   (int status);
  59. void    _Cdecl free   (void *block);
  60. char   *_Cdecl getenv (const char *name);
  61. long    _Cdecl labs   (long x);
  62. ldiv_t  _Cdecl ldiv   (long numer, long denom);
  63. void   *_Cdecl malloc (size_t size);
  64. void    _Cdecl qsort  (void *base, size_t nelem, size_t width,
  65.                        int _Cdecl (*fcmp)(/* const void *, const void * */));
  66. int     _Cdecl rand   (void);
  67. void   *_Cdecl realloc(void *block, size_t size);
  68. void    _Cdecl srand  (unsigned seed);
  69. double  _Cdecl strtod (const char *s, char **endptr);
  70. long    _Cdecl strtol (const char *s, char **endptr, int radix);
  71. unsigned long _Cdecl strtoul (const char *s, char **endptr, int radix);
  72. int     _Cdecl system (const char *command);
  73.  
  74. #if !__STDC__
  75.  
  76. #ifndef NULL
  77. #if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
  78. #define NULL    0
  79. #else
  80. #define NULL    0L
  81. #endif
  82. #endif
  83.  
  84. /* Variables */
  85. extern  int             _Cdecl _doserrno;
  86. extern  char          **_Cdecl environ;
  87. extern  int             _Cdecl errno;
  88. extern  int             _Cdecl _fmode;
  89. extern  unsigned char   _Cdecl _osmajor;
  90. extern  unsigned char   _Cdecl _osminor;
  91. extern  unsigned        _Cdecl _psp;
  92. extern  char           *_Cdecl sys_errlist[];
  93. extern  int             _Cdecl sys_nerr;
  94. extern  unsigned int    _Cdecl _version;
  95.  
  96. int     _Cdecl __abs__(int x);          /* This is an in-line function */
  97. #define abs(x)          __abs__(x)
  98. #define atoi(s)         ((int) atol (s))
  99.  
  100. #define max(a,b)        (((a) > (b)) ? (a) : (b))
  101. #define min(a,b)        (((a) < (b)) ? (a) : (b))
  102.  
  103. #define random(num)     (rand() % (num))
  104. #define randomize()     srand((unsigned)time(NULL))
  105.  
  106. char   *_Cdecl ecvt     (double value, int ndig, int *dec, int *sign);
  107. void    _Cdecl _exit    (int status);
  108. char   *_Cdecl fcvt     (double value, int ndig, int *dec, int *sign);
  109. char   *_Cdecl gcvt     (double value, int ndec, char *buf);
  110. char   *_Cdecl itoa     (int value, char *string, int radix);
  111. void   *_Cdecl lfind    (const void *key, const void *base, 
  112.                          size_t *num, size_t width,
  113.                          int _Cdecl (*fcmp)(/* const void *, const void * */));
  114.  
  115. unsigned long _Cdecl _lrotl(unsigned long val, int count);
  116. unsigned long _Cdecl _lrotr(unsigned long val, int count);
  117.  
  118. void   *_Cdecl lsearch  (const void *key, void *base, 
  119.                          size_t *num, size_t width, 
  120.                          int _Cdecl (*fcmp)(/* const void *, const void * */));
  121. char   *_Cdecl ltoa     (long value, char *string, int radix);
  122. int     _Cdecl putenv   (const char *name);
  123.  
  124. unsigned _Cdecl _rotl   (unsigned value, int count);
  125. unsigned _Cdecl _rotr   (unsigned value, int count);
  126.  
  127. void    _Cdecl swab     (char *from, char *to, int nbytes);
  128. char   *_Cdecl ultoa    (unsigned long value, char *string, int radix);
  129. #endif
  130.  
  131. #endif
  132.