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