Skip to content

Instantly share code, notes, and snippets.

@kgabis
Created September 6, 2011 13:25
Show Gist options
  • Save kgabis/1197522 to your computer and use it in GitHub Desktop.
Save kgabis/1197522 to your computer and use it in GitHub Desktop.
String to long unsigned int
long unsigned int strToInt(char * str)
{
long unsigned int result = 0;
while(*str)
{
result *= 10;
result += *str - '0';
str++;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment