From 183cf393a453cddb689666ce7fb35a97e7f523bf Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Tue, 15 Sep 2020 21:13:56 +0200 Subject: Add bzip2 stream compression support Signed-off-by: David Oberhollenzer --- lib/fstream/internal.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/fstream/internal.h') diff --git a/lib/fstream/internal.h b/lib/fstream/internal.h index 83ecc64..2dc81e4 100644 --- a/lib/fstream/internal.h +++ b/lib/fstream/internal.h @@ -59,12 +59,16 @@ SQFS_INTERNAL ostream_comp_t *ostream_xz_create(const char *filename); SQFS_INTERNAL ostream_comp_t *ostream_zstd_create(const char *filename); +SQFS_INTERNAL ostream_comp_t *ostream_bzip2_create(const char *filename); + SQFS_INTERNAL istream_comp_t *istream_gzip_create(const char *filename); SQFS_INTERNAL istream_comp_t *istream_xz_create(const char *filename); SQFS_INTERNAL istream_comp_t *istream_zstd_create(const char *filename); +SQFS_INTERNAL istream_comp_t *istream_bzip2_create(const char *filename); + #ifdef __cplusplus } #endif -- cgit v1.2.3