mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08: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;
|
|
}
|