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