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