summaryrefslogtreecommitdiffstats
path: root/lz4hc.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-08-08 12:08:11 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-08-08 12:08:11 (GMT)
commit53f1fbe062c6904b06d7181ccdb5a8fd6f883f15 (patch)
treec0fbea1da29a30ada823ad601bb311e2fb9102ae /lz4hc.c
parent0be64b41c9da191638f24c9a3437c5b4ee22a2a6 (diff)
downloadlz4-53f1fbe062c6904b06d7181ccdb5a8fd6f883f15.zip
lz4-53f1fbe062c6904b06d7181ccdb5a8fd6f883f15.tar.gz
lz4-53f1fbe062c6904b06d7181ccdb5a8fd6f883f15.tar.bz2
Introduced "Continuous Block Mode" (CBM) naming
to better differentiate with future lz4s.c library
Diffstat (limited to 'lz4hc.c')
-rw-r--r--lz4hc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lz4hc.c b/lz4hc.c
index 7de9811..cff5880 100644
--- a/lz4hc.c
+++ b/lz4hc.c
@@ -870,9 +870,9 @@ int LZ4_compressHC_limitedOutput_withStateHC (void* state, const char* source, c
{ return LZ4_compressHC2_limitedOutput_withStateHC (state, source, dest, inputSize, maxOutputSize, 0); }
-/****************************
- Stream functions
-****************************/
+/**************************************
+ Experimental Continuous Block Mode
+**************************************/
int LZ4_compressHC_continue (void* LZ4HC_Data, const char* source, char* dest, int inputSize)
{