index_decoder.h 550 B

123456789101112131415161718192021222324
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file index_decoder.h
  5. /// \brief Decodes the Index field
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_INDEX_DECODER_H
  11. #define LZMA_INDEX_DECODER_H
  12. #include "common.h"
  13. #include "index.h"
  14. extern lzma_ret lzma_index_decoder_init(lzma_next_coder *next,
  15. const lzma_allocator *allocator,
  16. lzma_index **i, uint64_t memlimit);
  17. #endif