1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/src/encoding/gzip.h

22 lines
347 B
C

#ifndef EL__ENCODING_GZIP_H
#define EL__ENCODING_GZIP_H
#include "encoding/encoding.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIG_GZIP
extern const struct decoding_backend gzip_decoding_backend;
const char *get_gzip_version(void);
#else
#define gzip_decoding_backend dummy_decoding_backend
#endif
#ifdef __cplusplus
}
#endif
#endif