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

Function strtoll

examples/stdlib.c:2937–2942  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2935}
2936
2937static long long int strtoll(const char * __restrict__ nptr,
2938 char ** __restrict__ endptr, int base)
2939{
2940 return (long long int)atoi_convert(nptr, endptr, base, LLONG_MIN,
2941 LLONG_MAX);
2942}
2943
2944static long int strtol(const char * __restrict__ nptr,
2945 char ** __restrict__ endptr, int base)

Callers 2

test_stringFunction · 0.85
peekTokenFunction · 0.85

Calls 1

atoi_convertFunction · 0.85

Tested by 1

test_stringFunction · 0.68