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