| 169 | std::string ext = path.extension().string(); |
| 170 | std::transform(ext.begin(), ext.end(), ext.begin(), [](unsigned char ch) { |
| 171 | return static_cast<char>(std::tolower(ch)); |
| 172 | }); |
| 173 | return ext; |
| 174 | } |
| 175 | |
| 176 | bool is_wav_path(const std::filesystem::path & path) { |
no test coverage detected