1 2 3 4 5 6 7 8
#include "stddef.h" // for NULL #include <stdlib.h> // for strtoll, atoll long long atoll(const char *nptr) { return strtoll(nptr, (char **)NULL, 10); }