Standard C++ Library Reference ISO/IEC (VERSION3)
MB_LEN_MAX
#define MB_LEN_MAX <#if expression >= 1>
The macro yields the maximum number of characters that constitute a multibyte character in
any supported locale. Its value is >= MB_CUR_MAX.
SCHAR_MAX
#define SCHAR_MAX <#if expression >= 127>
The macro yields the maximum value for type signed char.
SCHAR_MIN
#define SCHAR_MIN <#if expression <= -127>
The macro yields the minimum value for type signed char.
SHRT_MAX
#define SHRT_MAX <#if expression >= 32,767>
The macro yields the maximum value for type short.
SHRT_MIN
#define SHRT_MIN <#if expression <= -32,767>
The macro yields the minimum value for type short.
UCHAR_MAX
#define UCHAR_MAX <#if expression >= 255>
The macro yields the maximum value for type unsigned char.
UINT_MAX
#define UINT_MAX <#if expression >= 65,535>
The macro yields the maximum value for type unsigned int.