fxlibc/src/stdlib/atoll.c

7 lines
94 B
C
Raw Normal View History

2021-05-20 11:11:24 +02:00
#include <stdlib.h>
long long int atoll(char const *ptr)
{
return strtoll(ptr, NULL, 10);
}