| 42 | using DCtxPtr = std::unique_ptr<ZSTD_DCtx, decltype(&ZSTD_freeDCtx)>; |
| 43 | |
| 44 | Status ZSTDError(size_t ret, const char* prefix_msg) { |
| 45 | return Status::IOError(prefix_msg, ZSTD_getErrorName(ret)); |
| 46 | } |
| 47 | |
| 48 | // ---------------------------------------------------------------------- |
| 49 | // ZSTD decompressor implementation |
no test coverage detected