liblzma-sys 0.4.8

Raw bindings to liblzma which contains an implementation of LZMA and xz stream encoding/decoding. High level Rust bindings are available in the `liblzma` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin

if COND_ENCODER_LZ
liblzma_la_SOURCES += \
	lz/lz_encoder.c \
	lz/lz_encoder.h \
	lz/lz_encoder_hash.h \
	lz/lz_encoder_hash_table.h \
	lz/lz_encoder_mf.c
endif


if COND_DECODER_LZ
liblzma_la_SOURCES += \
	lz/lz_decoder.c \
	lz/lz_decoder.h
endif