2015-10-12 17:18:23 -04:00
|
|
|
#ifndef EL__ENCODING_BROTLI_H
|
|
|
|
#define EL__ENCODING_BROTLI_H
|
|
|
|
|
|
|
|
#include "encoding/encoding.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-10-12 17:18:23 -04:00
|
|
|
#ifdef CONFIG_BROTLI
|
|
|
|
extern const struct decoding_backend brotli_decoding_backend;
|
2021-12-27 11:02:58 -05:00
|
|
|
const char *get_brotli_version(void);
|
|
|
|
|
2015-10-12 17:18:23 -04:00
|
|
|
#else
|
|
|
|
#define brotli_decoding_backend dummy_decoding_backend
|
|
|
|
#endif
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-12 17:18:23 -04:00
|
|
|
#endif
|