Standard library header <inttypes.h> (C99)
From cppreference.com
This header is part of the type support library, in particular, it is a part of format conversion of integer types interface.
| This section is incomplete Reason: Add macros from B.7. Format conversion of integer types <inttypes.h> |
Synopsis
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);