| 56 | } |
| 57 | |
| 58 | std::vector<char> read_buffer(const fs::path& filename, size_t offset, size_t nbytes) |
| 59 | { |
| 60 | return generic_read_file<std::vector<char>>(filename, offset, nbytes); |
| 61 | } |
| 62 | |
| 63 | std::string read_string(const fs::path& filename) |
| 64 | { |
no outgoing calls