|
libwchar2 0.0.10
|
wcstoimax() - Convert wide string to a intmax_t integer
The wcstoimax() function are just like wcstol manual, except that they return a value of type intmax_t, respectively.
The wcstoimax() function returns on success, the converted value is returned.
If nothing was found to convert, zero is returned.
On overflow or underflow INTMAX_MAX or INTMAX_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