lzip_decoder.h 529 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file lzip_decoder.h
  5. /// \brief Decodes .lz (lzip) files
  6. //
  7. // Author: Michał Górny
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_LZIP_DECODER_H
  11. #define LZMA_LZIP_DECODER_H
  12. #include "common.h"
  13. extern lzma_ret lzma_lzip_decoder_init(
  14. lzma_next_coder *next, const lzma_allocator *allocator,
  15. uint64_t memlimit, uint32_t flags);
  16. #endif