cmpsc330hw4/utils.h
2024-11-19 22:34:14 -05:00

8 lines
161 B
C++

#ifndef UTILS_H
#define UTILS_H
#include <string>
char toLowerCase(char c);
bool equalsIgnoreCase(const std::string &a, const std::string &b);
#endif //UTILS_H