view src/lib-compression/istream-zlib.h @ 17104:fb4a0a84da50

lib-compression: Added initial support for LZ4 There's no standard file format for LZ4, so we created our own. The code has had only minimal testing currently, so there may be bugs.
author Timo Sirainen <tss@iki.fi>
date Wed, 15 Jan 2014 00:57:59 +0200
parents 81e486aacbc7
children
line wrap: on
line source

#ifndef ISTREAM_ZLIB_H
#define ISTREAM_ZLIB_H

struct istream *i_stream_create_gz(struct istream *input, bool log_errors);
struct istream *i_stream_create_deflate(struct istream *input, bool log_errors);
struct istream *i_stream_create_bz2(struct istream *input, bool log_errors);
struct istream *i_stream_create_lzma(struct istream *input, bool log_errors);
struct istream *i_stream_create_lz4(struct istream *input, bool log_errors);

#endif