| 60 | } |
| 61 | |
| 62 | bool caseInsensitiveCompare(const std::string& str1, const std::string& str2) |
| 63 | { |
| 64 | return strncasecmp(str1.c_str(), str2.c_str(), std::max(str1.size(), str2.size())) < 0; |
| 65 | } |
| 66 | } |
nothing calls this directly
no outgoing calls
no test coverage detected