ASCII to integer
Converts a string to an integer.
If you can, you can also convert the string to an integer value.
For example:
char * buf = " 1234 ";
int I = atoi(buf);
//Then I =1234;