| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 1 | |
| 2 | #include <stddef.h> /* size_t */ | ||||
| 3 | |||||
| 4 | typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx; | ||||
| 5 | |||||
| 6 | ZSTDMT_CCtx *ZSTDMT_createCCtx(unsigned nbThreads); | ||||
| 7 | size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* cctx); | ||||
| 8 | |||||
| 9 | size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* cctx, | ||||
| 10 | void* dst, size_t dstCapacity, | ||||
| 11 | const void* src, size_t srcSize, | ||||
| 12 | int compressionLevel); | ||||