Sha256: 44de29c2eb5a7252ffc8b91ff6dd9e209a3fffc7d9cfb5119a2270f136895abf
Contents?: true
Size: 977 Bytes
Versions: 1
Compression:
Stored size: 977 Bytes
Contents
/////////////////////////////////////////////////////////////////////////////// // /// \file options.h /// \brief Parser for filter-specific options // // Author: Lasse Collin // // This file has been put into the public domain. // You can do whatever you want with this file. // /////////////////////////////////////////////////////////////////////////////// /// \brief Parser for Delta options /// /// \return Pointer to allocated options structure. /// Doesn't return on error. 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. /// Doesn't return on error. extern lzma_options_lzma *options_lzma(const char *str);
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
laag-xz-5.2.4.0 | vendor/git.tukaani.org/xz/src/xz/options.h |