mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
13 lines
242 B
C
13 lines
242 B
C
#ifndef EL__ENCODING_LZMA_H
|
|
#define EL__ENCODING_LZMA_H
|
|
|
|
#include "encoding/encoding.h"
|
|
|
|
#ifdef CONFIG_LZMA
|
|
extern const struct decoding_backend lzma_decoding_backend;
|
|
#else
|
|
#define lzma_decoding_backend dummy_decoding_backend
|
|
#endif
|
|
|
|
#endif
|