2021-12-23 09:39:42 -05:00
|
|
|
#ifndef EL__ENCODING_GZIP_H
|
|
|
|
#define EL__ENCODING_GZIP_H
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#include "encoding/encoding.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#ifdef CONFIG_GZIP
|
2007-02-24 14:42:56 -05:00
|
|
|
extern const struct decoding_backend gzip_decoding_backend;
|
2021-12-27 11:02:58 -05:00
|
|
|
const char *get_gzip_version(void);
|
2005-09-15 09:58:31 -04:00
|
|
|
#else
|
|
|
|
#define gzip_decoding_backend dummy_decoding_backend
|
|
|
|
#endif
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|