1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/src/encoding/lzma.h

13 lines
242 B
C
Raw Normal View History

2006-03-25 05:40:09 -05:00
#ifndef EL__ENCODING_LZMA_H
#define EL__ENCODING_LZMA_H
#include "encoding/encoding.h"
#ifdef CONFIG_LZMA
2007-02-24 14:42:56 -05:00
extern const struct decoding_backend lzma_decoding_backend;
2006-03-25 05:40:09 -05:00
#else
#define lzma_decoding_backend dummy_decoding_backend
#endif
#endif