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

Function atoi

examples/stdlib.c:2950–2956  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2948}
2949
2950static int atoi(const char *nptr)
2951{
2952 int saved_errno = errno;
2953 int x = (int)atoi_convert(nptr, NULL, 10, INT_MIN, INT_MAX);
2954 errno = saved_errno;
2955 return x;
2956}
2957
2958static long int atol(const char *nptr)
2959{

Callers 1

initFunction · 0.85

Calls 1

atoi_convertFunction · 0.85

Tested by

no test coverage detected