mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
22 lines
347 B
C
22 lines
347 B
C
#ifndef EL__ENCODING_ZSTD_H
|
|
#define EL__ENCODING_ZSTD_H
|
|
|
|
#include "encoding/encoding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef CONFIG_ZSTD
|
|
extern const struct decoding_backend zstd_decoding_backend;
|
|
const char *get_zstd_version(void);
|
|
#else
|
|
#define zstd_decoding_backend dummy_decoding_backend
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|