home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0423.ZIP / CCE_0423.PD / GPINCL13.ZOO / limits.h < prev    next >
C/C++ Source or Header  |  1992-07-23  |  8KB  |  283 lines

  1. /*
  2.  *    LIMITS.H
  3.  *    see ansi draft sec 4.1.3 and 2.2.4.2
  4.  */
  5.  
  6. #ifndef    _LIMITS_H
  7. #define    _LIMITS_H
  8.  
  9. #ifndef _COMPILER_H
  10. #include <compiler.h>
  11. #endif
  12.  
  13. #ifndef __MINT__
  14. #define    PATHSIZE    (128)        /* maximum pathname length */
  15. #define    BITSPERBYTE    8
  16. #endif
  17.  
  18.  
  19. #define CHAR_BIT 8
  20.  
  21. #define SCHAR_MAX 127
  22. #define SCHAR_MIN (-128)
  23. #define UCHAR_MAX 255
  24.  
  25. #ifdef __CHAR_UNSIGNED__
  26. #define CHAR_MAX UCHAR_MAX
  27. #define CHAR_MIN 0
  28. #else
  29. #define CHAR_MAX SCHAR_MAX
  30. #define CHAR_MIN SCHAR_MIN
  31. #endif
  32.  
  33. #define SHRT_MAX 32767
  34. #define SHRT_MIN (-32768)
  35. #define LONG_MAX 2147483647L
  36. #define LONG_MIN (-2147483648L)
  37. #define USHRT_MAX 65535U
  38. #define ULONG_MAX 4294967295UL
  39.  
  40. #ifdef __MSHORT__ /* 16 bit ints */
  41. #define INT_MAX SHRT_MAX
  42. #define INT_MIN SHRT_MIN
  43. #define UINT_MAX USHRT_MAX
  44.  
  45. #else /* 32 bit ints */
  46.  
  47. #define INT_MAX 2147483647
  48. #define INT_MIN (-2147483648)
  49. #define UINT_MAX 4294967295U
  50.  
  51. #endif /* __MSHORT__ */
  52.  
  53. #define MB_LEN_MAX    1    /* max. number of bytes in a multibyte character */
  54.  
  55. /*
  56.  * POSIX-specific stuff; see 1003.1 sect. 2.9
  57.  *
  58.  * Note that the library is *not* POSIX compliant; hence
  59.  * the illegally small values for some constants (e.g. _POSIX_LINK_MAX)
  60.  */
  61.  
  62. #define _POSIX_ARG_MAX        4096
  63. #define _POSIX_CHILD_MAX    6
  64. #define _POSIX_LINK_MAX        8
  65. #define _POSIX_MAX_CANON    64    /* <- NON-CONFORMING */
  66. #define _POSIX_MAX_INPUT    64    /* <- NON-CONFORMING */
  67. #define _POSIX_NAME_MAX        14
  68. #define _POSIX_NGROUPS_MAX    0
  69. #define _POSIX_OPEN_MAX        16
  70. #define _POSIX_PATH_MAX        128    /* <- NON-CONFORMING */
  71. #define _POSIX_PIPE_BUF        512
  72.  
  73. #ifndef __STRICT_ANSI__
  74.  
  75. #define NGROUPS_MAX        _POSIX_NGROUPS_MAX
  76. #if 0
  77. /* both of these are actually limited by available memory */
  78. #define ARG_MAX            32767
  79. #define CHILD_MAX        16
  80. #endif
  81.  
  82. #define OPEN_MAX        20
  83. #ifdef __MINT__
  84. # define LINK_MAX        32767
  85. #else
  86. # define LINK_MAX        1
  87. #endif
  88.  
  89. #define MAX_CANON        _POSIX_MAX_CANON
  90. #define MAX_INPUT        _POSIX_MAX_INPUT
  91. #define NAME_MAX        31
  92.         /* actually, MiNT file systems _could_ support more */
  93.  
  94. /* _LIB_NAME_MAX longest name supported in the library
  95.  *  before you change this, please look at stat.c, symdir.c, dirent.[ch],
  96.  *  unx2dos.c.
  97.  *  for the TOS library, this must be atleast 32 to maintain backwards
  98.  *  compatibility.
  99.  */
  100. #ifndef __MINT__
  101. #  define _LIB_NAME_MAX        32 /* CAUTION: dont make this any smaller */
  102. #else
  103. #  define _LIB_NAME_MAX        NAME_MAX
  104. #endif
  105.  
  106. #define PATH_MAX        _POSIX_PATH_MAX
  107. #define PIPE_BUF        _POSIX_PIPE_BUF
  108.  
  109. #endif /* __STRICT_ANSI__ */
  110.  
  111.  
  112. #ifndef _values_h
  113. #define _values_h 1
  114.  
  115. #define BITSPERBYTE 8
  116. #define BITS(type)  (BITSPERBYTE * (int)sizeof(type))
  117.  
  118. #define CHARBITS    BITS(char)
  119. #define SHORTBITS   BITS(short)
  120. #define INTBITS     BITS(int)
  121. #define LONGBITS    BITS(long)
  122. #define PTRBITS     BITS(char*)
  123. #define DOUBLEBITS  BITS(double)
  124. #define FLOATBITS   BITS(float)
  125.  
  126. #define MINSHORT    ((short)(1 << (SHORTBITS - 1)))
  127. #define MININT      (1 << (INTBITS - 1))
  128. #define MINLONG     (1L << (LONGBITS - 1))
  129.  
  130. #define MAXSHORT    ((short)~MINSHORT)
  131. #define MAXINT      (~MININT)
  132. #define MAXLONG     (~MINLONG)
  133.  
  134. #define HIBITS    MINSHORT
  135. #define HIBITL    MINLONG
  136.  
  137. #if defined(sun) || defined(hp300) || defined(hpux) || defined(masscomp) || defined(sgi)
  138. #ifdef masscomp
  139. #define MAXDOUBLE                            \
  140. ({                                    \
  141.   double maxdouble_val;                            \
  142.                                     \
  143.   __asm ("fmove%.d #0x7fefffffffffffff,%0"    /* Max double */    \
  144.      : "=f" (maxdouble_val)                        \
  145.      : /* no inputs */);                        \
  146.   maxdouble_val;                            \
  147. })
  148. #define MAXFLOAT ((float) 3.40e+38)
  149. #else
  150. #define MAXDOUBLE   1.79769313486231470e+308
  151. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  152. #endif
  153. #define MINDOUBLE   4.94065645841246544e-324
  154. #define MINFLOAT    ((float)1.40129846432481707e-45)
  155. #define _IEEE       1
  156. #define _DEXPLEN    11
  157. #define _FEXPLEN    8
  158. #define _HIDDENBIT  1
  159. #define DMINEXP     (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  160. #define FMINEXP     (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  161. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  162. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  163.  
  164. #elif defined(sony) 
  165. #define MAXDOUBLE   1.79769313486231470e+308
  166. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  167. #define MINDOUBLE   2.2250738585072010e-308
  168. #define MINFLOAT    ((float)1.17549435e-38)
  169. #define _IEEE       1
  170. #define _DEXPLEN    11
  171. #define _FEXPLEN    8
  172. #define _HIDDENBIT  1
  173. #define DMINEXP     (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  174. #define FMINEXP     (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  175. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  176. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  177.  
  178. #elif defined(sequent)
  179. extern double _maxdouble, _mindouble;
  180. extern float _maxfloat, _minfloat;
  181. #define MAXDOUBLE    _maxdouble
  182. #define MAXFLOAT    _maxfloat
  183. #define MINDOUBLE    _mindouble
  184. #define MINFLOAT    _minfloat
  185. #define _IEEE       1
  186. #define _DEXPLEN    11
  187. #define _FEXPLEN    8
  188. #define _HIDDENBIT  1
  189. #define DMINEXP     (-(DMAXEXP - 3))
  190. #define FMINEXP     (-(FMAXEXP - 3))
  191. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  192. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  193.  
  194. #elif defined(i386)
  195. #define MAXDOUBLE   1.79769313486231570e+308
  196. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  197. #define MINDOUBLE   2.22507385850720140e-308
  198. #define MINFLOAT    ((float)1.17549435082228750e-38)
  199. #define _IEEE       0
  200. #define _DEXPLEN    11
  201. #define _FEXPLEN    8
  202. #define _HIDDENBIT  1
  203. #define DMINEXP     (-DMAXEXP)
  204. #define FMINEXP     (-FMAXEXP)
  205. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  206. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  207.  
  208. /* from Andrew Klossner <andrew%frip.wv.tek.com@relay.cs.net> */
  209. #elif defined(m88k)
  210.     /* These are "good" guesses ...
  211.        I'll figure out the true mins and maxes later, at the time I find
  212.        out the mins and maxes that the compiler can tokenize. */
  213. #define MAXDOUBLE   1.79769313486231e+308
  214. #define MAXFLOAT    ((float)3.40282346638528e+38)
  215. #define MINDOUBLE   2.22507385850720e-308
  216. #define MINFLOAT    ((float)1.17549435082228e-38)
  217. #define _IEEE       1
  218. #define _DEXPLEN    11
  219. #define _FEXPLEN    8
  220. #define _HIDDENBIT  1
  221. #define DMINEXP     (1-DMAXEXP)
  222. #define FMINEXP     (1-FMAXEXP)
  223. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  224. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  225.  
  226. #elif defined(convex)
  227. #define MAXDOUBLE   8.9884656743115785e+306
  228. #define MAXFLOAT    ((float) 1.70141173e+38)
  229. #define MINDOUBLE   5.5626846462680035e-308
  230. #define MINFLOAT    ((float) 2.93873588e-39)
  231. #define _IEEE       0
  232. #define _DEXPLEN    11
  233. #define _FEXPLEN    8
  234. #define _HIDDENBIT  1
  235. #define DMINEXP     (-DMAXEXP)
  236. #define FMINEXP     (-FMAXEXP)
  237. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  238. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  239.  
  240. #elif defined(atarist) 
  241. #define MAXDOUBLE   1.7976931348623158e+308
  242. #define MAXFLOAT    ((float)3.40282347e+38)
  243. #define MINDOUBLE   2.2250738585072014e-308
  244. #define MINFLOAT    ((float)1.17549435e-38)
  245. #define _IEEE       1
  246. #define _DEXPLEN    11
  247. #define _FEXPLEN    8
  248. #define _HIDDENBIT  1
  249. #define DMINEXP     (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  250. #define FMINEXP     (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  251. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  252. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  253.  
  254. // #elif defined(vax)
  255. // use vax versions by default -- they seem to be the most conservative
  256. #else 
  257.  
  258. #define MAXDOUBLE   1.701411834604692293e+38
  259. #define MINDOUBLE   (2.938735877055718770e-39)
  260.  
  261. #define MAXFLOAT    1.7014117331926443e+38
  262. #define MINFLOAT    2.9387358770557188e-39
  263.  
  264. #define _IEEE       0
  265. #define _DEXPLEN    8
  266. #define _FEXPLEN    8
  267. #define _HIDDENBIT  1
  268. #define DMINEXP     (-DMAXEXP)
  269. #define FMINEXP     (-FMAXEXP)
  270. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  271. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  272. #endif
  273.  
  274. #define DSIGNIF     (DOUBLEBITS - _DEXPLEN + _HIDDENBIT - 1)
  275. #define FSIGNIF     (FLOATBITS  - _FEXPLEN + _HIDDENBIT - 1)
  276. #define DMAXPOWTWO  ((double)(1L << LONGBITS -2)*(1L << DSIGNIF - LONGBITS +1))
  277. #define FMAXPOWTWO  ((float)(1L << FSIGNIF - 1))
  278.  
  279. #endif
  280.  
  281.  
  282. #endif /* _LIMITS_H */
  283.