| 164 | bool hasTxtExtension(std::string_view fileName) { return checkFileExtension(fileName, ".txt"); } |
| 165 | |
| 166 | bool hasMarkdownExtension(std::string_view fileName) { return checkFileExtension(fileName, ".md"); } |
| 167 | |
| 168 | bool hasCssExtension(std::string_view fileName) { return checkFileExtension(fileName, ".css"); } |
| 169 |
no test coverage detected