alone_decoder.h 532 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file alone_decoder.h
  5. /// \brief Decoder for LZMA_Alone files
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_ALONE_DECODER_H
  11. #define LZMA_ALONE_DECODER_H
  12. #include "common.h"
  13. extern lzma_ret lzma_alone_decoder_init(
  14. lzma_next_coder *next, const lzma_allocator *allocator,
  15. uint64_t memlimit, bool picky);
  16. #endif