stdint.h - サイズ保証がある整数型などが定義される標準ヘッダ
サイズの保証がある整数型やある整数型の最大値・最小値の定数マクロなどが定義されているヘッダです。
- INT8_MIN - int8_tの最小値を表す定数
- INT8_MAX - int8_tの最大値を表す定数
- INT16_MIN - int16_tの最小値を表す定数
- INT16_MAX - int16_tの最大値を表す定数
- INT32_MIN - int32_tの最小値を表す定数
- INT32_MAX - int32_tの最大値を表す定数
- INT64_MIN - int64_tの最小値を表す定数
- INT64_MAX - int64_tの最大値を表す定数
- UINT8_MAX - uint8_tの最大値を表す定数
- UINT16_MAX - uint16_tの最大値を表す定数
- UINT32_MAX - uint32_tの最大値を表す定数
- UINT64_MAX - uint64_tの最大値を表す定数
- SIZE_MAX - size_t型の最大値