4 lines
54 B
C++
4 lines
54 B
C++
|
char toLowerCase(const char c) {
|
||
|
return c | 32;
|
||
|
}
|