1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/src/encoding/lzma.h

22 lines
347 B
C
Raw Normal View History

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