1// SPDX-License-Identifier: 0BSD
2
3///////////////////////////////////////////////////////////////////////////////
4//
5/// \file       filter_decoder.h
6/// \brief      Filter ID mapping to filter-specific functions
7//
8//  Author:     Lasse Collin
9//
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef LZMA_FILTER_DECODER_H
13#define LZMA_FILTER_DECODER_H
14
15#include "common.h"
16
17
18extern lzma_ret lzma_raw_decoder_init(
19		lzma_next_coder *next, const lzma_allocator *allocator,
20		const lzma_filter *options);
21
22#endif
23