diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2019-04-04 20:42:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-04 20:42:58 (GMT) |
commit | f66abc45d9b9671b889acb1e5a2506228f85548c (patch) | |
tree | 84216dd40a46c7d5728827ceaec64130022654e5 /lib/lz4hc.h | |
parent | 1a41b2b25ca220f560b07c6fc25dae7415273f6e (diff) | |
parent | 7a39fb8fb69a47486b91810708bbe796331b26a2 (diff) | |
download | lz4-f66abc45d9b9671b889acb1e5a2506228f85548c.zip lz4-f66abc45d9b9671b889acb1e5a2506228f85548c.tar.gz lz4-f66abc45d9b9671b889acb1e5a2506228f85548c.tar.bz2 |
Merge pull request #658 from lz4/_fast
Deprecated LZ4_decompres_fast*() functions
Diffstat (limited to 'lib/lz4hc.h')
-rw-r--r-- | lib/lz4hc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h index 5e7cb11..d1772f3 100644 --- a/lib/lz4hc.h +++ b/lib/lz4hc.h @@ -145,7 +145,7 @@ LZ4LIB_API int LZ4_freeStreamHC (LZ4_streamHC_t* streamHCPtr); Return value of LZ4_saveDictHC() is the size of dictionary effectively saved into 'safeBuffer' (<= 64 KB) After completing a streaming compression, - it's possible to start a new stream and re-use the LZ4_streamHC_t state + it's possible to start a new stream of blocks, and re-use the same LZ4_streamHC_t state by resetting it, using LZ4_resetStreamHC_fast(). */ |