| 297 | |
| 298 | |
| 299 | bool CaseInsensitiveCompare::operator()(const std::string& a, const std::string& b) const { |
| 300 | return strcasecmp(a.c_str(), b.c_str()) < 0; |
| 301 | } |
| 302 | |
| 303 | |
| 304 | std::vector<std::string> split(const std::string& s, const std::string& separator, size_t maxTokens) { |
nothing calls this directly
no test coverage detected