xref: /freebsd/contrib/xz/src/liblzma/common/block_decoder.h (revision c6ec7d31830ab1c80edae95ad5e4b9dba10c47ac)
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       block_decoder.h
4 /// \brief      Decodes .xz Blocks
5 //
6 //  Author:     Lasse Collin
7 //
8 //  This file has been put into the public domain.
9 //  You can do whatever you want with this file.
10 //
11 ///////////////////////////////////////////////////////////////////////////////
12 
13 #ifndef LZMA_BLOCK_DECODER_H
14 #define LZMA_BLOCK_DECODER_H
15 
16 #include "common.h"
17 
18 
19 extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
20 		lzma_allocator *allocator, lzma_block *block);
21 
22 #endif
23