13 lines
314 B
C
13 lines
314 B
C
#ifndef LIMITS_H
|
|
#define LIMITS_H
|
|
#define INT_MAX 2147483647
|
|
#define INT_MIN (-INT_MAX - 1)
|
|
#define UINT_MAX 4294967295U
|
|
#define LONG_MAX 2147483647L
|
|
#define LONG_MIN (-LONG_MAX - 1L)
|
|
#define ULONG_MAX 4294967295UL
|
|
#define SHRT_MAX 32767
|
|
#define SHRT_MIN (-32768)
|
|
#define USHRT_MAX 65535
|
|
#define CHAR_BIT 8
|
|
#endif
|