mirror of
https://github.com/TheAlgorithms/C
synced 2025-05-14 16:08:07 +03:00
7 lines
125 B
C
7 lines
125 B
C
char *toLowerCase(char *str)
|
|
{
|
|
for (int i = 0; i < strlen(str); i++)
|
|
str[i] = tolower(str[i]);
|
|
return str;
|
|
}
|