summaryrefslogtreecommitdiff
path: root/Build/source/extra/xz-4.999.9beta/src/liblzma/subblock/subblock_decoder.h
blob: d1030b2b94f54220e931ba2f7209f4eafaa7704f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
///////////////////////////////////////////////////////////////////////////////
//
/// \file       subblock_decoder.h
/// \brief      Decoder of the Subblock filter
//
//  Author:     Lasse Collin
//
//  This file has been put into the public domain.
//  You can do whatever you want with this file.
//
///////////////////////////////////////////////////////////////////////////////

#ifndef LZMA_SUBBLOCK_DECODER_H
#define LZMA_SUBBLOCK_DECODER_H

#include "common.h"


extern lzma_ret lzma_subblock_decoder_init(lzma_next_coder *next,
		lzma_allocator *allocator, const lzma_filter_info *filters);

#endif