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

Function strtol

examples/stdlib.c:2944–2948  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2942}
2943
2944static 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
2950static int atoi(const char *nptr)
2951{

Callers

nothing calls this directly

Calls 1

atoi_convertFunction · 0.85

Tested by

no test coverage detected