| 36 | return load_buffer(read_buffer(filename), options); |
| 37 | } |
| 38 | program load_buffer(const std::vector<char>& buffer, const file_options& options) |
| 39 | { |
| 40 | return load_buffer(buffer.data(), buffer.size(), options); |
| 41 | } |
| 42 | program load_buffer(const char* buffer, std::size_t size, const file_options& options) |
| 43 | { |
| 44 | program p; |
no test coverage detected