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

Function strtoul

examples/stdlib.c:2931–2935  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2929}
2930
2931static unsigned long int strtoul(const char * __restrict__ nptr,
2932 char ** __restrict__ endptr, int base)
2933{
2934 return (unsigned long int)atoi_convert(nptr, endptr, base, 0, ULONG_MAX);
2935}
2936
2937static long long int strtoll(const char * __restrict__ nptr,
2938 char ** __restrict__ endptr, int base)

Callers 3

parseIntOptArgFunction · 0.85
parseIntOptArgFunction · 0.85
main_2Function · 0.85

Calls 1

atoi_convertFunction · 0.85

Tested by

no test coverage detected