1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef ZSTD_FAST_H
- #define ZSTD_FAST_H
- #if defined (__cplusplus)
- extern "C" {
- #endif
- #include "mem.h"
- #include "zstd_compress_internal.h"
- void ZSTD_fillHashTable(ZSTD_matchState_t* ms,
- void const* end, ZSTD_dictTableLoadMethod_e dtlm);
- size_t ZSTD_compressBlock_fast(
- ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
- void const* src, size_t srcSize);
- size_t ZSTD_compressBlock_fast_dictMatchState(
- ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
- void const* src, size_t srcSize);
- size_t ZSTD_compressBlock_fast_extDict(
- ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
- void const* src, size_t srcSize);
- #if defined (__cplusplus)
- }
- #endif
- #endif
|