1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/src/encoding/brotli.h

23 lines
360 B
C

#ifndef EL__ENCODING_BROTLI_H
#define EL__ENCODING_BROTLI_H
#include "encoding/encoding.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIG_BROTLI
extern const struct decoding_backend brotli_decoding_backend;
const char *get_brotli_version(void);
#else
#define brotli_decoding_backend dummy_decoding_backend
#endif
#ifdef __cplusplus
}
#endif
#endif