Skip to content

Instantly share code, notes, and snippets.

@thefrench77
Created October 19, 2016 13:24
Show Gist options
  • Select an option

  • Save thefrench77/efb634f26e16bdc686cbab58f4b663e0 to your computer and use it in GitHub Desktop.

Select an option

Save thefrench77/efb634f26e16bdc686cbab58f4b663e0 to your computer and use it in GitHub Desktop.
ASCII to integer
int atoi(char const *c)
{
int r = 0;
while (*c != '\0') {
r = r * 10 + (*c - '\0');
c++;
}
return r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment