| 2942 | } |
| 2943 | |
| 2944 | static long int strtol(const char * __restrict__ nptr, |
| 2945 | char ** __restrict__ endptr, int base) |
| 2946 | { |
| 2947 | return (long int)atoi_convert(nptr, endptr, base, LONG_MIN, LONG_MAX); |
| 2948 | } |
| 2949 | |
| 2950 | static int atoi(const char *nptr) |
| 2951 | { |
nothing calls this directly
no test coverage detected