From a85c6025903a2b6e97e1938b201b3361a0cbed66 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Tue, 30 Apr 2019 10:50:13 +0200 Subject: Add compressor library Signed-off-by: David Oberhollenzer --- lib/comp/internal.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/comp/internal.h (limited to 'lib/comp/internal.h') diff --git a/lib/comp/internal.h b/lib/comp/internal.h new file mode 100644 index 0000000..17fffe1 --- /dev/null +++ b/lib/comp/internal.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +#ifndef INTERNAL_H +#define INTERNAL_H + +#include "compress.h" + +compressor_t *create_lzma_compressor(bool compress, size_t block_size); + +compressor_t *create_zlib_compressor(bool compress, size_t block_size); + +#endif /* INTERNAL_H */ -- cgit v1.2.3