home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0423.ZIP / CCE_0423.PD / INCLUD83.ZOO / limits.h < prev    next >
C/C++ Source or Header  |  1992-09-27  |  3KB  |  122 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 (-LONG_MAX-1) /* this fixes the float cast problem ! */
  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 (-INT_MAX-1) /* this fixes the float cast problem ! */
  49. #define UINT_MAX 4294967295U
  50.  
  51. #endif /* __MSHORT__ */
  52.  
  53. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  54. /* Minimum and maximum values a `signed long long int' can hold.  */
  55. #define LONG_LONG_MAX 9223372036854775807LL
  56. #define LONG_LONG_MIN (-LONG_LONG_MAX-1)
  57.  
  58. /* Maximum value an `unsigned long long int' can hold.  (Minimum is 0).  */
  59. #define ULONG_LONG_MAX 18446744073709551615ULL
  60.  
  61. #endif /* __GNUC__ && !__STRICT_ANSI__)
  62.  
  63. #define MB_LEN_MAX    1    /* max. number of bytes in a multibyte character */
  64.  
  65. /*
  66.  * POSIX-specific stuff; see 1003.1 sect. 2.9
  67.  *
  68.  * Note that the library is *not* POSIX compliant; hence
  69.  * the illegally small values for some constants (e.g. _POSIX_LINK_MAX)
  70.  */
  71.  
  72. #define _POSIX_ARG_MAX        4096
  73. #define _POSIX_CHILD_MAX    6
  74. #define _POSIX_LINK_MAX        8
  75. #define _POSIX_MAX_CANON    64    /* <- NON-CONFORMING */
  76. #define _POSIX_MAX_INPUT    64    /* <- NON-CONFORMING */
  77. #define _POSIX_NAME_MAX        14
  78. #define _POSIX_NGROUPS_MAX    0
  79. #define _POSIX_OPEN_MAX        16
  80. #define _POSIX_PATH_MAX        128    /* <- NON-CONFORMING */
  81. #define _POSIX_PIPE_BUF        512
  82.  
  83. #ifndef __STRICT_ANSI__
  84.  
  85. #define NGROUPS_MAX        _POSIX_NGROUPS_MAX
  86. #if 0
  87. /* both of these are actually limited by available memory */
  88. #define ARG_MAX            32767
  89. #define CHILD_MAX        16
  90. #endif
  91.  
  92. #define OPEN_MAX        20
  93. #ifdef __MINT__
  94. # define LINK_MAX        32767
  95. #else
  96. # define LINK_MAX        1
  97. #endif
  98.  
  99. #define MAX_CANON        _POSIX_MAX_CANON
  100. #define MAX_INPUT        _POSIX_MAX_INPUT
  101. #define NAME_MAX        31
  102.         /* actually, MiNT file systems _could_ support more */
  103.  
  104. /* _LIB_NAME_MAX longest name supported in the library
  105.  *  before you change this, please look at stat.c, symdir.c, dirent.[ch],
  106.  *  unx2dos.c.
  107.  *  for the TOS library, this must be atleast 32 to maintain backwards
  108.  *  compatibility.
  109.  */
  110. #ifndef __MINT__
  111. #  define _LIB_NAME_MAX        32 /* CAUTION: dont make this any smaller */
  112. #else
  113. #  define _LIB_NAME_MAX        NAME_MAX
  114. #endif
  115.  
  116. #define PATH_MAX        _POSIX_PATH_MAX
  117. #define PIPE_BUF        _POSIX_PIPE_BUF
  118.  
  119. #endif /* __STRICT_ANSI__ */
  120.  
  121. #endif /* _LIMITS_H */
  122.