0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-10-21 19:54:04 -04:00
Files
elinks/src/encoding/lzma.h
2021-12-27 17:02:58 +01:00

22 lines
347 B
C

#ifndef EL__ENCODING_LZMA_H
#define EL__ENCODING_LZMA_H
#include "encoding/encoding.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIG_LZMA
extern const struct decoding_backend lzma_decoding_backend;
const char *get_lzma_version(void);
#else
#define lzma_decoding_backend dummy_decoding_backend
#endif
#ifdef __cplusplus
}
#endif
#endif