summaryrefslogtreecommitdiffstats
path: root/lz4.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 /lz4.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 'lz4.c')
-rw-r--r--lz4.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lz4.c b/lz4.c
index d58be27..1c73e73 100644
--- a/lz4.c
+++ b/lz4.c
@@ -683,7 +683,7 @@ int LZ4_compress_limitedOutput(const char* source, char* dest, int inputSize, in
/*****************************************
- Experimental : Streaming functions
+ Experimental Continuous Block Mode
*****************************************/
/*
@@ -1177,7 +1177,7 @@ int LZ4_uncompress (const char* source, char* dest, int outputSize) { return LZ4
int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize) { return LZ4_decompress_safe(source, dest, isize, maxOutputSize); }
-/* Obsolete Streaming functions */
+/* Obsolete CBM functions */
int LZ4_sizeofStreamState() { return LZ4_STREAMSIZE; }
@@ -1236,7 +1236,7 @@ int LZ4_compress_limitedOutput_withState (void* state, const char* source, char*
return LZ4_compress_generic(state, source, dest, inputSize, maxOutputSize, limitedOutput, LZ4_64BITS ? byU32 : byPtr, noDict, noDictIssue);
}
-/* Obsolete streaming decompression functions */
+/* Obsolete CBM decompression functions */
int LZ4_decompress_safe_withPrefix64k(const char* source, char* dest, int compressedSize, int maxOutputSize)
{