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