iso9660fs: initialize buffer cache
[minix.git] / external / public-domain / xz / dist / src / liblzma / common / block_decoder.h
blob7da9df63f767a807c0f68d4d45fdc33d6d7ccfc1
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 lzma_allocator *allocator, lzma_block *block);
22 #endif