| 61 | } |
| 62 | |
| 63 | std::string StripPboExtension(const std::string& path) |
| 64 | { |
| 65 | if (EndsWithInsensitive(path, ".pbo")) |
| 66 | return path.substr(0, path.size() - 4); |
| 67 | return path; |
| 68 | } |
| 69 | |
| 70 | bool IsConfigLikeExtension(const std::string& ext) |
| 71 | { |
no test coverage detected