cmpsc330hw4/utils.cpp

4 lines
54 B
C++
Raw Normal View History

2024-11-20 01:04:51 +00:00
char toLowerCase(const char c) {
return c | 32;
}