| 2922 | } |
| 2923 | |
| 2924 | static unsigned long long int strtoull(const char * __restrict__ nptr, |
| 2925 | char ** __restrict__ endptr, int base) |
| 2926 | { |
| 2927 | return (unsigned long long int)atoi_convert(nptr, endptr, base, 0, |
| 2928 | ULLONG_MAX); |
| 2929 | } |
| 2930 | |
| 2931 | static unsigned long int strtoul(const char * __restrict__ nptr, |
| 2932 | char ** __restrict__ endptr, int base) |
no test coverage detected