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