| 221 | } |
| 222 | |
| 223 | bool compareNoCase(const std::string_view str1, const std::string_view str2) |
| 224 | { |
| 225 | if (str1.length() != str2.length()) |
| 226 | { |
| 227 | return false; |
| 228 | } |
| 229 | return Strncasecmp(str1.data(), str2.data(), str1.length()) == 0; |
| 230 | } |
| 231 | |
| 232 | std::vector<std::string> splitOnNewLine(const std::string& str) |
| 233 | { |
no test coverage detected