diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-19 20:24:26 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-19 20:24:26 +0300 |
commit | d5b0906fa55157f48c200188a3951d80df9cb308 (patch) | |
tree | 8751d2e460bc977bfc634913dfcec1533720a328 /src/xz/options.h | |
parent | liblzma: Add experimental ARM64 BCJ filter with a temporary Filter ID. (diff) | |
download | xz-d5b0906fa55157f48c200188a3951d80df9cb308.tar.xz |
xz: Add --experimental-arm64[=width=WIDTH].
It will be renamed to --arm64 once it is stable.
Man page or --long-help weren't updated yet.
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 61ec8d58..d56adc8a 100644 --- a/src/xz/options.h +++ b/src/xz/options.h @@ -24,6 +24,13 @@ extern lzma_options_delta *options_delta(const char *str); extern lzma_options_bcj *options_bcj(const char *str); +/// \brief Parser for ARM64 options +/// +/// \return Pointer to allocated options structure. +/// Doesn't return on error. +extern lzma_options_arm64 *options_arm64(const char *str); + + /// \brief Parser for LZMA options /// /// \return Pointer to allocated options structure. |