| 5 | bool CompareIgnoreCase(const std::string &lh, const std::string &rh); |
| 6 | |
| 7 | struct CaseInsensitiveLess final { |
| 8 | bool operator()(const std::string &lhs, const std::string &rhs) const; |
| 9 | }; |
| 10 | |
| 11 | // 直到C++ 20才有endwith,这里自己写一个 |
| 12 | bool EndWith(const std::string &source, const std::string &end); |
nothing calls this directly
no outgoing calls
no test coverage detected