block_decoder.h 507 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file block_decoder.h
  5. /// \brief Decodes .xz Blocks
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_BLOCK_DECODER_H
  11. #define LZMA_BLOCK_DECODER_H
  12. #include "common.h"
  13. extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
  14. const lzma_allocator *allocator, lzma_block *block);
  15. #endif