1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/src/encoding/zstd.h

22 lines
347 B
C
Raw Normal View History

2019-07-14 12:54:39 -04:00
#ifndef EL__ENCODING_ZSTD_H
#define EL__ENCODING_ZSTD_H
#include "encoding/encoding.h"
#ifdef __cplusplus
extern "C" {
#endif
2019-07-14 12:54:39 -04:00
#ifdef CONFIG_ZSTD
extern const struct decoding_backend zstd_decoding_backend;
const char *get_zstd_version(void);
2019-07-14 12:54:39 -04:00
#else
#define zstd_decoding_backend dummy_decoding_backend
#endif
#ifdef __cplusplus
}
#endif
2019-07-14 12:54:39 -04:00
#endif