#include // for strtoumax #include // for uintmax_t #include // for strtoull uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) { return strtoull(s, p, base); }