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(3) and wcstoul(3), except that
17 they 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
27 This page is part of release 3.53 of the Linux man-pages project. A
28 description of the project, and information about reporting bugs, can
29 be found at http://www.kernel.org/doc/man-pages/.
30
31
32
33 2003-11-01 WCSTOIMAX(3)