2024-11-20 01:04:51 +00:00
|
|
|
#ifndef UTILS_H
|
|
|
|
#define UTILS_H
|
2024-11-20 03:34:14 +00:00
|
|
|
#include <string>
|
|
|
|
|
2024-11-20 01:04:51 +00:00
|
|
|
char toLowerCase(char c);
|
2024-11-20 03:34:14 +00:00
|
|
|
bool equalsIgnoreCase(const std::string &a, const std::string &b);
|
2024-11-20 01:04:51 +00:00
|
|
|
#endif //UTILS_H
|