8 lines
161 B
C++
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
|