summaryrefslogtreecommitdiffstats
path: root/doc/lz4_manual.html
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-01-31 22:33:16 (GMT)
committerYann Collet <cyan@fb.com>2018-01-31 22:33:16 (GMT)
commit87fb7a1d031a7e6df72d5ca50ab543a57ddca21f (patch)
tree4fb328b79a82c18cbb458e677681b80b40bb03d5 /doc/lz4_manual.html
parent8258f4d9cba4c163f0c63a60a79d14d8aef90c4e (diff)
downloadlz4-87fb7a1d031a7e6df72d5ca50ab543a57ddca21f.zip
lz4-87fb7a1d031a7e6df72d5ca50ab543a57ddca21f.tar.gz
lz4-87fb7a1d031a7e6df72d5ca50ab543a57ddca21f.tar.bz2
refactored frameCompress example
to better reflect LZ4F API usage.
Diffstat (limited to 'doc/lz4_manual.html')
-rw-r--r--doc/lz4_manual.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html
index 6b7935d..46e6c3d 100644
--- a/doc/lz4_manual.html
+++ b/doc/lz4_manual.html
@@ -176,8 +176,8 @@ int LZ4_freeStream (LZ4_stream_t* streamPtr);
If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
Important : Up to 64KB of previously compressed data is assumed to remain present and unmodified in memory !
- Special 1 : If input buffer is a double-buffer, it can have any size, including < 64 KB.
- Special 2 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
+ Special 1 : If input buffer is a double-buffer, it can have any size, including < 64 KB.
+ Special 2 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
@return : size of compressed block
or 0 if there is an error (typically, compressed data cannot fit into 'dst')