TheAlgorithms-C/leetcode/src/709.c

6 lines
125 B
C
Raw Normal View History

char * toLowerCase(char * str){
for (int i = 0; i< strlen(str); i++)
str[i] = tolower(str[i]);
return str;
}