diff options
Diffstat (limited to 'src/inttypes/wcstoumax.c')
-rw-r--r-- | src/inttypes/wcstoumax.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/inttypes/wcstoumax.c b/src/inttypes/wcstoumax.c new file mode 100644 index 00000000..8516da08 --- /dev/null +++ b/src/inttypes/wcstoumax.c @@ -0,0 +1,17 @@ +#include <inttypes.h> + +uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base) +{ + /* like wcstoll */ + + /* if > UINTMAX_MAX */ + /* errno = ERANGE; */ + /* return UINTMAX_MAX */ + + /* if no conversion */ + return 0; +} + +/* +STDC(199901) +*/ |