| 21 | #include <stdio.h> |
| 22 | |
| 23 | static const DecoderPlugin * |
| 24 | FindContainerDecoderPlugin(std::string_view suffix) |
| 25 | { |
| 26 | return decoder_plugins_find([suffix](const DecoderPlugin &plugin){ |
| 27 | return plugin.container_scan != nullptr && |
| 28 | plugin.SupportsSuffix(suffix); |
| 29 | }); |
| 30 | } |
| 31 | |
| 32 | static const DecoderPlugin * |
| 33 | FindContainerDecoderPlugin(Path path) |
no test coverage detected