// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file options.h
/// \brief Parser for filter-specific options
//
// Author: Lasse Collin
//
///////////////////////////////////////////////////////////////////////////////
/// \brief Parser for Delta options
///
/// \return Pointer to allocated options structure.
/// Doesn't return on error.
extern lzma_options_delta *;
/// \brief Parser for BCJ options
///
/// \return Pointer to allocated options structure.
/// Doesn't return on error.
extern lzma_options_bcj *;
/// \brief Parser for LZMA options
///
/// \return Pointer to allocated options structure.
/// Doesn't return on error.
extern lzma_options_lzma *;