1
2liblzma example programs
3========================
4
5Introduction
6
7    The examples are written so that the same comments aren't
8    repeated (much) in later files.
9
10    On POSIX systems, the examples should build by just typing "make".
11
12    The examples that use stdin or stdout don't set stdin and stdout
13    to binary mode. On systems where it matters (e.g. Windows) it is
14    possible that the examples won't work without modification.
15
16
17List of examples
18
19    01_compress_easy.c                  Multi-call compression using
20                                        a compression preset
21
22    02_decompress.c                     Multi-call decompression
23
24    03_compress_custom.c                Like 01_compress_easy.c but using
25                                        a custom filter chain
26                                        (x86 BCJ + LZMA2)
27
28    04_compress_easy_mt.c               Multi-threaded multi-call
29                                        compression using a compression
30                                        preset
31
32