stdint.h --Standard header that defines integer types with size guarantee
It is a header that defines an integer type with a guaranteed size and a constant macro of the maximum and minimum values of a certain integer type.
- INT8_MIN --Constant representing the minimum value of int8_t
- INT8_MAX --Constant representing the maximum value of int8_t
- INT16_MIN --Constant representing the minimum value of int16_t
- INT16_MAX --Constant representing the maximum value of int16_t
- INT32_MIN --Constant representing the minimum value of int32_t
- INT32_MAX --Constant representing the maximum value of int32_t
- INT64_MIN --Constant representing the minimum value of int64_t
- INT64_MAX --Constant representing the maximum value of int64_t
- UINT8_MAX --Constant representing the maximum value of uint8_t
- UINT16_MAX --Constant representing the maximum value of uint16_t
- UINT32_MAX --Constant representing the maximum value of uint32_t
- UINT64_MAX --Constant representing the maximum value of uint64_t
- SIZE_MAX --Maximum value of size_t type