fixed #718, reported by @GregSlazinski, solution suggested by @mcmilk

This commit is contained in:
Yann Collet
2017-07-06 01:42:46 -07:00
parent d75c0e71c4
commit f04deff4fc
2 changed files with 13 additions and 8 deletions
+12
View File
@@ -331,4 +331,16 @@ size_t ZSTD_compressStream_generic(ZSTD_CStream* zcs,
ZSTD_parameters ZSTD_getParamsFromCDict(const ZSTD_CDict* cdict);
typedef struct {
blockType_e blockType;
U32 lastBlock;
U32 origSize;
} blockProperties_t;
/*! ZSTD_getcBlockSize() :
* Provides the size of compressed block from block header `src` */
size_t ZSTD_getcBlockSize(const void* src, size_t srcSize,
blockProperties_t* bpPtr);
#endif /* ZSTD_CCOMMON_H_MODULE */