summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-04-01 17:21:03 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-04-01 17:21:03 (GMT)
commit78d2dfd42758328c65d8517b8ee8e6124d7f8407 (patch)
tree916acce9a9a038fe35c13f5123015296acb38232 /lib/lz4.h
parentef7cd83271eb6a513dd4fe389ee37a9bfc8e00e6 (diff)
downloadlz4-78d2dfd42758328c65d8517b8ee8e6124d7f8407.zip
lz4-78d2dfd42758328c65d8517b8ee8e6124d7f8407.tar.gz
lz4-78d2dfd42758328c65d8517b8ee8e6124d7f8407.tar.bz2
fullbench : tests of _limitedOutput variants intentionnally provides less memory space than safe (LZ4_compressBound())
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 92c8738..81a11c9 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -144,6 +144,7 @@ LZ4_compress_withState() :
Same compression functions, but using an externally allocated memory space to store compression state.
Use LZ4_sizeofState() to know how much memory must be allocated,
and then, provide it as 'void* state' to compression functions.
+ Note that 'state' must be aligned on 4-bytes boundaries.
*/
int LZ4_sizeofState(void);
int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);