| 2929 | } |
| 2930 | |
| 2931 | static unsigned long int strtoul(const char * __restrict__ nptr, |
| 2932 | char ** __restrict__ endptr, int base) |
| 2933 | { |
| 2934 | return (unsigned long int)atoi_convert(nptr, endptr, base, 0, ULONG_MAX); |
| 2935 | } |
| 2936 | |
| 2937 | static long long int strtoll(const char * __restrict__ nptr, |
| 2938 | char ** __restrict__ endptr, int base) |
no test coverage detected