Various platform-dependent constants proposed by ANSI
Note: CHAR_MAX and CHAR_MIN may have different values depending on whether chars are signed or not. They are signed by default in TIGCC, but this may be changed using a compiler command-line switch. Similarly, INT_MAX, INT_MIN, and UINT_MAX depend on whether short or long integers are used.
See also: values.h
#define CHAR_BIT 8 |
Length of a char variable in bits.
#define CHAR_MAX 127/255 |
Maximal value which can be stored in a char variable.
#define CHAR_MIN (-128)/0 |
Minimal value which can be stored in a char variable.
#define INT_MAX 0x7FFF/0x7FFFFFFF |
Maximal value which can be stored in an int variable.
#define INT_MIN ((int) 0x8000/0x80000000) |
Minimal value which can be stored in an int variable.
#define LONG_MAX 0x7FFFFFFFL |
Maximal value which can be stored in a long int variable.
#define LONG_MIN ((long) 0x80000000L) |
Minimal value which can be stored in a long int variable.
#define SCHAR_MAX 127 |
Maximal value which can be stored in a signed char variable.
#define SCHAR_MIN (-128) |
Minimal value which can be stored in a signed char variable.
#define SHRT_MAX 0x7FFF |
Maximal value which can be stored in a short int variable.
#define SHRT_MIN ((short) 0x8000) |
Minimal value which can be stored in a short int variable.
#define UCHAR_MAX 255 |
Maximal value which can be stored in an unsigned char variable.
#define UINT_MAX 0xFFFFU/0xFFFFFFFFUL |
Maximal value which can be stored in an unsigned int variable.
#define ULONG_MAX 0xFFFFFFFFUL |
Maximal value which can be stored in an unsigned long int variable.
#define USHRT_MAX 0xFFFFU |
Maximal value which can be stored in an unsigned short variable.