mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
Remove ZSTDLIB_API from decompress.c
This commit is contained in:
@ -1399,7 +1399,7 @@ size_t ZSTD_decompressBlock(ZSTD_DCtx* dctx,
|
|||||||
|
|
||||||
/** ZSTD_insertBlock() :
|
/** ZSTD_insertBlock() :
|
||||||
insert `src` block into `dctx` history. Useful to track uncompressed blocks. */
|
insert `src` block into `dctx` history. Useful to track uncompressed blocks. */
|
||||||
ZSTDLIB_API size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize)
|
size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize)
|
||||||
{
|
{
|
||||||
ZSTD_checkContinuity(dctx, blockStart);
|
ZSTD_checkContinuity(dctx, blockStart);
|
||||||
dctx->previousDstEnd = (const char*)blockStart + blockSize;
|
dctx->previousDstEnd = (const char*)blockStart + blockSize;
|
||||||
|
Reference in New Issue
Block a user