Namespaces
Variants
Views
Actions

Standard library header <inttypes.h> (C99)

From cppreference.com
< c‎ | header

This header is part of the type support library, in particular, it is a part of format conversion of integer types interface.

[edit] 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);