Rizin
unix-like reverse engineering framework and cli tools
options.h
Go to the documentation of this file.
1 //
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
12 
17 extern lzma_options_delta *options_delta(const char *str);
18 
19 
24 extern lzma_options_bcj *options_bcj(const char *str);
25 
26 
31 extern lzma_options_lzma *options_lzma(const char *str);
lzma_options_lzma * options_lzma(const char *str)
Parser for LZMA options.
Definition: options.c:317
lzma_options_bcj * options_bcj(const char *str)
Parser for BCJ options.
Definition: options.c:209
lzma_options_delta * options_delta(const char *str)
Parser for Delta options.
Definition: options.c:165
Options for BCJ filters.
Definition: bcj.h:73
Options for the Delta filter.
Definition: delta.h:45
Options specific to the LZMA1 and LZMA2 filters.
Definition: lzma12.h:185