| 154 | bool hasBmpExtension(std::string_view fileName) { return checkFileExtension(fileName, ".bmp"); } |
| 155 | |
| 156 | bool hasGifExtension(std::string_view fileName) { return checkFileExtension(fileName, ".gif"); } |
| 157 | |
| 158 | bool hasEpubExtension(std::string_view fileName) { return checkFileExtension(fileName, ".epub"); } |
| 159 |
nothing calls this directly
no test coverage detected