NAME
wcstoimax, wcstoumax - convert wide-character string to integer
SYNOPSIS
#include <stddef.h>
#include <inttypes.h>
I intmax_t wcstoimax(const wchar_t * nptr , wchar_t ** endptr , int base );
I uintmax_t wcstoumax(const wchar_t * nptr , wchar_t ** endptr , int base );
DESCRIPTION
These functions are just like
wcstol(3)
and
wcstoul(3),
except that they return a value of type
intmax_t
and
R uintmax_t ,
respectively.
CONFORMING TO
C99.
SEE ALSO