| 156 | bool hasGifExtension(std::string_view fileName) { return checkFileExtension(fileName, ".gif"); } |
| 157 | |
| 158 | bool hasEpubExtension(std::string_view fileName) { return checkFileExtension(fileName, ".epub"); } |
| 159 | |
| 160 | bool hasXtcExtension(std::string_view fileName) { |
| 161 | return checkFileExtension(fileName, ".xtc") || checkFileExtension(fileName, ".xtch"); |
nothing calls this directly
no test coverage detected