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