#include #include #include #include #include #include "_stdlib.h" unsigned long long int strtoull(const char * restrict nptr, char ** restrict endptr, int base) { unsigned long long int ret = 0; unsigned long long int max = ULLONG_MAX; unsigned long long int min = 0; SIGNAL_SAFE(0); ASSERT_NOOVERLAP(nptr, strlen(nptr), endptr, sizeof(*endptr)); #include "_strtoi.h" return ret; } /* STDC(199901) */