Tests: Fix memory leaks in test_block_header.
[xz/debian.git] / src / liblzma / common / block_decoder.h
blob718c5ced886c561b5935ebf9002ca2ebb2f47b7a
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.
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef LZMA_BLOCK_DECODER_H
14 #define LZMA_BLOCK_DECODER_H
16 #include "common.h"
19 extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
20 const lzma_allocator *allocator, lzma_block *block);
22 #endif