summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-07 12:23:00 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-07 12:23:00 (GMT)
commit488029ec3b23b1e00a69f1ac3fcdd49d24cb7d3f (patch)
treed696d7ecfc04803408fb3b9a9ef15697c0cbca00 /programs/lz4io.h
parent046bd3abee5b05f3c08a5b86c6b50c552c8567cc (diff)
downloadlz4-488029ec3b23b1e00a69f1ac3fcdd49d24cb7d3f.zip
lz4-488029ec3b23b1e00a69f1ac3fcdd49d24cb7d3f.tar.gz
lz4-488029ec3b23b1e00a69f1ac3fcdd49d24cb7d3f.tar.bz2
Updated : compress multiple files
Diffstat (limited to 'programs/lz4io.h')
-rw-r--r--programs/lz4io.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/programs/lz4io.h b/programs/lz4io.h
index 7869a43..2270c65 100644
--- a/programs/lz4io.h
+++ b/programs/lz4io.h
@@ -1,6 +1,6 @@
/*
LZ4io.h - LZ4 File/Stream Interface
- Copyright (C) Yann Collet 2011-2014
+ Copyright (C) Yann Collet 2011-2015
GPL v2 License
This program is free software; you can redistribute it and/or modify
@@ -47,8 +47,10 @@ static char nulmark[] = "/dev/null";
/* ****************** Functions ********************* */
/* ************************************************** */
-int LZ4IO_compressFilename (char* input_filename, char* output_filename, int compressionlevel);
-int LZ4IO_decompressFilename(char* input_filename, char* output_filename);
+int LZ4IO_compressFilename (const char* input_filename, const char* output_filename, int compressionlevel);
+int LZ4IO_decompressFilename(const char* input_filename, const char* output_filename);
+
+int LZ4IO_compressMultipleFilenames(const char** inFileNamesTable, int ifntSize, const char* suffix, int compressionlevel);
/* ************************************************** */