From: senhuang42 Date: Wed, 28 Oct 2020 15:04:44 +0000 (-0400) Subject: Add function definition for sequenceRange updater X-Git-Tag: v1.4.7~30^2~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d99b6751121e1d32ca0faedefbd3554bfa49cb0f;p=thirdparty%2Fzstd.git Add function definition for sequenceRange updater --- diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index e81dedbf0..ce9ac1dd0 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -4495,6 +4495,11 @@ typedef struct { U32 endPos; /* Absolute position within array of ZSTD_Sequence where range end */ } ZSTD_sequenceRange; + +static void ZSTD_updateSequenceRange(ZSTD_sequenceRange* sequenceRange, size_t nbBytes, + const ZSTD_Sequence* const inSeqs, size_t inSeqsSize) { +} + /* Returns 0 on success, otherwise ZSTD error code */ static size_t ZSTD_copySequencesToSeqStore(ZSTD_CCtx* zc, const ZSTD_Sequence* inSeqs, size_t inSeqsSize,