diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-04-30 10:50:13 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-02 12:40:06 +0200 |
commit | a85c6025903a2b6e97e1938b201b3361a0cbed66 (patch) | |
tree | cf92df4ba782c4b9c4a49dcf1cc3e25f849723a9 /lib/comp/internal.h | |
parent | fa7f378bf627ddcfd7a93a000149e4d8c3810bf5 (diff) |
Add compressor library
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/comp/internal.h')
-rw-r--r-- | lib/comp/internal.h | 11 |
1 files changed, 11 insertions, 0 deletions
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 */ |