| 70 | int strcasecmp(const char* s1, const char* s2); |
| 71 | |
| 72 | struct CaseInsensitiveCompare { |
| 73 | /** Returns whether `a < b` using case-insensitive lexical comparison. */ |
| 74 | bool operator()(const std::string& a, const std::string& b) const; |
| 75 | }; |
| 76 | |
| 77 | /** Joins an container (vector, list, etc) of std::strings with an optional separator string. |
| 78 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected