wcstoimax(3) - Linux man page
Name
wcstoimax, wcstoumax - convert wide-character string to integer
Synopsis
#include <stddef.h>
#include <inttypes.h>
intmax_t wcstoimax(const wchar_t *nptr, wchar_t **endptrint " base );
uintmax_t wcstoumax(const wchar_t *nptr, wchar_t **endptrint " base );
Description
These functions are just like wcstol(3) and wcstoul(3), except that they
return a value of type intmax_t and uintmax_t, respectively.
Conforming to
C99.
See Also
imaxabs(3), imaxdiv(3), strtoimax(3), strtoumax(3),
wcstol(3), wcstoul(3)