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

Function strtoull

examples/stdlib.c:2924–2929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2922}
2923
2924static unsigned long long int strtoull(const char * __restrict__ nptr,
2925 char ** __restrict__ endptr, int base)
2926{
2927 return (unsigned long long int)atoi_convert(nptr, endptr, base, 0,
2928 ULLONG_MAX);
2929}
2930
2931static unsigned long int strtoul(const char * __restrict__ nptr,
2932 char ** __restrict__ endptr, int base)

Callers 4

stringToNumberFunction · 0.85
entryToIntFunction · 0.85
getTokenMethod · 0.85
e9_plugin_initFunction · 0.85

Calls 1

atoi_convertFunction · 0.85

Tested by

no test coverage detected