blob: 73ee379b8e159b8bb9a75fdfb261858a01d4a606 [file] [log] [blame]
Yann Collet3d93f2f2016-12-27 07:19:36 +01001
2#include <stddef.h> /* size_t */
3
4typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx;
5
6ZSTDMT_CCtx *ZSTDMT_createCCtx(unsigned nbThreads);
7size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* cctx);
8
9size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* cctx,
10 void* dst, size_t dstCapacity,
11 const void* src, size_t srcSize,
12 int compressionLevel);