mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-13 13:54:36 +00:00
6 lines
117 B
C
6 lines
117 B
C
char *toLowerCase(char *str)
|
|
{
|
|
for (int i = 0; i < strlen(str); i++) str[i] = tolower(str[i]);
|
|
return str;
|
|
}
|