Skip to content

Instantly share code, notes, and snippets.

@sirwolfgang
Last active October 8, 2015 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sirwolfgang/3310893 to your computer and use it in GitHub Desktop.
Save sirwolfgang/3310893 to your computer and use it in GitHub Desktop.
Char* String To Lower Case
char* strlow(char* _str)
{
for(unsigned int c = 0; _str[c]; _str[c++] = tolower(_str[c]));
return _str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment