fxlibc/src/stdlib/atoll.c

7 lines
94 B
C

#include <stdlib.h>
long long int atoll(char const *ptr)
{
return strtoll(ptr, NULL, 10);
}