MCPcopy Create free account
hub / github.com/GJDuck/e9patch / atol

Function atol

examples/stdlib.c:2958–2964  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2956}
2957
2958static long int atol(const char *nptr)
2959{
2960 int saved_errno = errno;
2961 long int x = (long int)atoi_convert(nptr, NULL, 10, LONG_MIN, LONG_MAX);
2962 errno = saved_errno;
2963 return x;
2964}
2965
2966static long long int atoll(const char *nptr)
2967{

Callers 2

read_long_namesFunction · 0.85

Calls 1

atoi_convertFunction · 0.85

Tested by

no test coverage detected