标准库头文件 <inttypes.h> (C99)
来自 cppreference.cn
此头文件是类型支持库的一部分,特别是,它是整数类型的格式转换接口的一部分。
此章节不完整 原因:从 B.7. 整数类型的格式转换 <inttypes.h> 添加宏 |
[编辑] 概要
intmax_t imaxabs(intmax_t j); imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom); intmax_t strtoimax(const char* restrict nptr, char** restrict endptr, int base); uintmax_t strtoumax(const char* restrict nptr, char** restrict endptr, int base); intmax_t wcstoimax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); uintmax_t wcstoumax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);