summaryrefslogtreecommitdiffstats
path: root/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-05-04 12:26:05 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-05-04 12:26:05 (GMT)
commit7bcb3b2e9f36ad6adef2cb43858a8f3adb39c527 (patch)
tree45c8562052f29a1a3887f490643ede49d405fd77 /lz4.h
parent200d87c6842047dab5c06c99cb267243710980fd (diff)
downloadlz4-7bcb3b2e9f36ad6adef2cb43858a8f3adb39c527.zip
lz4-7bcb3b2e9f36ad6adef2cb43858a8f3adb39c527.tar.gz
lz4-7bcb3b2e9f36ad6adef2cb43858a8f3adb39c527.tar.bz2
changed naming convention to *_usingDict()
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lz4.h b/lz4.h
index 9ac11ba..37bd282 100644
--- a/lz4.h
+++ b/lz4.h
@@ -241,8 +241,8 @@ int LZ4_decompress_fast_withPrefix64k (const char* source, char* dest, int origi
but can also use up to 64KB of dictionary data
to decode chained blocks.
*/
-int LZ4_decompress_safe_withDict (const char* source, char* dest, int compressedSize, int maxOutputSize, const char* dictStart, int dictSize);
-int LZ4_decompress_fast_withDict (const char* source, char* dest, int originalSize, const char* dictStart, int dictSize);
+int LZ4_decompress_safe_usingDict (const char* source, char* dest, int compressedSize, int maxOutputSize, const char* dictStart, int dictSize);
+int LZ4_decompress_fast_usingDict (const char* source, char* dest, int originalSize, const char* dictStart, int dictSize);