| 41 | constexpr std::string_view kOctExt = ".oct"; |
| 42 | |
| 43 | std::string_view extension_for(oid::BufferExporter::OutputType format) { |
| 44 | return format == oid::BufferExporter::OutputType::Bitmap ? kPngExt |
| 45 | : kOctExt; |
| 46 | } |
| 47 | |
| 48 | bool ends_with(std::string_view s, std::string_view suffix) { |
| 49 | return s.size() >= suffix.size() && |
no outgoing calls
no test coverage detected