1 2 3 4 5 6 7
#include <stdint.h> #include <stdlib.h> uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) { return strtoull(s, p, base); }