| 193 | } |
| 194 | |
| 195 | std::unique_ptr<uint8_t[]> readBinary(const std::string& filepath, size_t& outSize) { |
| 196 | return readBinaryInternal(filepath, outSize); |
| 197 | } |
| 198 | |
| 199 | std::unique_ptr<uint8_t[]> readString(const std::string& filepath) { |
| 200 | size_t size = 0; |
no test coverage detected