stream_decoder.h 530 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file stream_decoder.h
  5. /// \brief Decodes .xz Streams
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_STREAM_DECODER_H
  11. #define LZMA_STREAM_DECODER_H
  12. #include "common.h"
  13. extern lzma_ret lzma_stream_decoder_init(
  14. lzma_next_coder *next, const lzma_allocator *allocator,
  15. uint64_t memlimit, uint32_t flags);
  16. #endif