1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-05-18 00:48:57 -04:00
2019-07-14 18:54:39 +02:00

13 lines
242 B
C

#ifndef EL__ENCODING_ZSTD_H
#define EL__ENCODING_ZSTD_H
#include "encoding/encoding.h"
#ifdef CONFIG_ZSTD
extern const struct decoding_backend zstd_decoding_backend;
#else
#define zstd_decoding_backend dummy_decoding_backend
#endif
#endif