|
libwchar2 0.0.10
|
wcstoumax() - Convert wide string to a uintmax_t integer
The wcstoumax() function are just like wcstoul manual, except that they return a value of type uintmax_t, respectively.
The wcstoumax() function returns on success, the converted value is returned.
If nothing was found to convert, zero is returned.
On overflow or underflow UINTMAX_MAX or UINTMAX_MIN is returned, and errno is set to ERANGE.
Since 0 can legitimately be returned on both success and failure, the calling program not needed set errno to 0 before the call.
1.8.14