mirror of
https://github.com/facebook/zstd.git
synced 2025-10-08 00:04:02 -04:00
minor comments
This commit is contained in:
parent
ffa7d0ac1e
commit
6a82f0f8bf
2
NEWS
2
NEWS
@ -3,7 +3,7 @@ Improved : better speed on clang and gcc -O2, thanks to Eric Biggers
|
|||||||
Changed : modified API : ZSTD_compressEnd()
|
Changed : modified API : ZSTD_compressEnd()
|
||||||
Fixed : legacy mode with ZSTD_HEAPMODE=0, by Christopher Bergqvist
|
Fixed : legacy mode with ZSTD_HEAPMODE=0, by Christopher Bergqvist
|
||||||
Fixed : premature end of frame when zero-sized raw block, reported by Eric Biggers
|
Fixed : premature end of frame when zero-sized raw block, reported by Eric Biggers
|
||||||
Fixed : statistics for large dictionaries (> 128 KB), reported by Ilona Papava
|
Fixed : statistics for large dictionaries (> 256 KB), reported by Ilona Papava
|
||||||
Fixed : checksum correctly checked in single-pass mode
|
Fixed : checksum correctly checked in single-pass mode
|
||||||
Fixed : combined --test amd --rm, reported by Andreas M. Nilsson
|
Fixed : combined --test amd --rm, reported by Andreas M. Nilsson
|
||||||
Modified : minor compression level adaptations
|
Modified : minor compression level adaptations
|
||||||
|
@ -58,7 +58,9 @@ extern "C" {
|
|||||||
***************************************/
|
***************************************/
|
||||||
/* This is the easier "buffered" streaming API,
|
/* This is the easier "buffered" streaming API,
|
||||||
* using an internal buffer to lift all restrictions on user-provided buffers
|
* using an internal buffer to lift all restrictions on user-provided buffers
|
||||||
* which can be any size, any place, for both input and output. */
|
* which can be any size, any place, for both input and output.
|
||||||
|
* ZBUFF and ZSTD are 100% interoperable,
|
||||||
|
* frames created by one can be decoded by the other one */
|
||||||
|
|
||||||
typedef struct ZBUFF_CCtx_s ZBUFF_CCtx;
|
typedef struct ZBUFF_CCtx_s ZBUFF_CCtx;
|
||||||
ZSTDLIB_API ZBUFF_CCtx* ZBUFF_createCCtx(void);
|
ZSTDLIB_API ZBUFF_CCtx* ZBUFF_createCCtx(void);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user