summaryrefslogtreecommitdiffstats
path: root/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-11-02 21:32:12 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-11-02 21:32:12 (GMT)
commit61289dea1d94510a4d6386bc44c08d3d15083123 (patch)
treedc563f9f6170ade07a04c22d0614ccdbe51b61c4 /lz4.h
parentd9927ea693262df817a43bca5b4ea6d299f7db5f (diff)
downloadlz4-61289dea1d94510a4d6386bc44c08d3d15083123.zip
lz4-61289dea1d94510a4d6386bc44c08d3d15083123.tar.gz
lz4-61289dea1d94510a4d6386bc44c08d3d15083123.tar.bz2
Optimized LZ4_saveDictHC()
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lz4.h b/lz4.h
index 0a8a772..3c35c6e 100644
--- a/lz4.h
+++ b/lz4.h
@@ -200,7 +200,7 @@ int LZ4_freeStream (LZ4_stream_t* LZ4_streamPtr);
* Use this function to load a static dictionary into LZ4_stream.
* Any previous data will be forgotten, only 'dictionary' will remain in memory.
* Loading a size of 0 is allowed.
- * Return : 1 if OK, 0 if error
+ * Return : dictionary size, in bytes (necessarily <= 64 KB)
*/
int LZ4_loadDict (LZ4_stream_t* LZ4_streamPtr, const char* dictionary, int dictSize);