diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-05-23 15:12:23 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-05-23 15:12:23 +0300 |
commit | b1edee2cdc7ef4411b1a21c07094ec763f071281 (patch) | |
tree | 41e429c0071bac8b83ddf0680100fb7880249af5 /src/xz/options.h | |
parent | Updated THANKS. (diff) | |
download | xz-b1edee2cdc7ef4411b1a21c07094ec763f071281.tar.xz |
Add support for specifying the BCJ filter start offset
in the xz command line tool.
Diffstat (limited to '')
-rw-r--r-- | src/xz/options.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/xz/options.h b/src/xz/options.h index 426086bd..e7389c8e 100644 --- a/src/xz/options.h +++ b/src/xz/options.h @@ -24,6 +24,13 @@ extern lzma_options_subblock *options_subblock(const char *str); extern lzma_options_delta *options_delta(const char *str); +/// \brief Parser for BCJ options +/// +/// \return Pointer to allocated options structure. +/// Doesn't return on error. +extern lzma_options_bcj *options_bcj(const char *str); + + /// \brief Parser for LZMA options /// /// \return Pointer to allocated options structure. |