#define INT_MAX 32767 #define INT_MIN -32768 #define UINT_MAX 65535 #define LONG_MAX INT_MAX #define LONG_MIN INT_MIN #define SCHAR_MAX 127 #define SCHAR_MIN -128 #define UCHAR_MAX 255 #define SHRT_MAX 32767 #define SHRT_MIN -32768 #define USHRT_MAX 65535 #define ULONG_MAX UINT_MAX #define CHAR_BIT __CHAR_BIT__