1WCSTOIMAX(3) Linux Programmer's Manual WCSTOIMAX(3)
2
3
4
6 wcstoimax, wcstoumax - convert wide-character string to integer
7
9 #include <stddef.h>
10 #include <inttypes.h>
11
12 intmax_t wcstoimax (const wchar_t *nptr, wchar_t **endptr, int base);
13 uintmax_t wcstoumax (const wchar_t *nptr, wchar_t **endptr, int base);
14
16 These functions are just like wcstol() and wcstoul(), except that they
17 return a value of type intmax_t and uintmax_t, respectively.
18
20 C99.
21
23 imaxabs(3), imaxdiv(3), strtoimax(3), strtoumax(3), wcstol(3),
24 wcstoul(3)
25
26
27
28 2003-11-01 WCSTOIMAX(3)