1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

22 lines
347 B
C
Raw Normal View History

2006-03-25 11:40:09 +01:00
#ifndef EL__ENCODING_LZMA_H
#define EL__ENCODING_LZMA_H
#include "encoding/encoding.h"
#ifdef __cplusplus
extern "C" {
#endif
2006-03-25 11:40:09 +01:00
#ifdef CONFIG_LZMA
2007-02-24 21:42:56 +02:00
extern const struct decoding_backend lzma_decoding_backend;
const char *get_lzma_version(void);
2006-03-25 11:40:09 +01:00
#else
#define lzma_decoding_backend dummy_decoding_backend
#endif
#ifdef __cplusplus
}
#endif
2006-03-25 11:40:09 +01:00
#endif