summaryrefslogtreecommitdiffstats
path: root/src/lib-compression/istream-zlib.h
blob: 041fbf3db68bde9e8fd3f1152e453e7ad11d5f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ISTREAM_ZLIB_H
#define ISTREAM_ZLIB_H

struct istream *i_stream_create_gz(struct istream *input);
struct istream *i_stream_create_deflate(struct istream *input);
struct istream *i_stream_create_bz2(struct istream *input);
struct istream *i_stream_create_lzma(struct istream *input);
struct istream *i_stream_create_lz4(struct istream *input);
struct istream *i_stream_create_zstd(struct istream *input);

#endif