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

Function atoll

examples/stdlib.c:2966–2973  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2964}
2965
2966static long long int atoll(const char *nptr)
2967{
2968 int saved_errno = errno;
2969 long long int x = (long long int)atoi_convert(nptr, NULL, 10, LLONG_MIN,
2970 LLONG_MAX);
2971 errno = saved_errno;
2972 return x;
2973}
2974
2975/****************************************************************************/
2976/* STDIO */

Callers 2

initFunction · 0.85
initFunction · 0.85

Calls 1

atoi_convertFunction · 0.85

Tested by

no test coverage detected