home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c329 / 2.img / INCL_A / LIMITS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-23  |  546 b   |  22 lines

  1. /*  limits.h
  2.  *  ANSI C Runtime Library
  3.  */
  4.  
  5. #ifndef CHAR_BIT
  6. #  define CHAR_BIT    8
  7. #  define SCHAR_MIN   -127
  8. #  define SCHAR_MAX   127
  9. #  define UCHAR_MAX   255u
  10. #  define CHAR_MIN    SCHAR_MIN
  11. #  define CHAR_MAX    SCHAR_MAX
  12. #  define SHRT_MIN    -32767
  13. #  define SHRT_MAX    32767
  14. #  define USHRT_MAX   65535u
  15. #  define INT_MIN     -2147483647
  16. #  define INT_MAX     2147483647
  17. #  define UINT_MAX    4294967295u
  18. #  define LONG_MIN    -2147483647
  19. #  define LONG_MAX    2147483647
  20. #  define ULONG_MAX   4294967295u
  21. #endif
  22.