index_encoder.h 515 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file index_encoder.h
  5. /// \brief Encodes the Index field
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_INDEX_ENCODER_H
  11. #define LZMA_INDEX_ENCODER_H
  12. #include "common.h"
  13. extern lzma_ret lzma_index_encoder_init(lzma_next_coder *next,
  14. const lzma_allocator *allocator, const lzma_index *i);
  15. #endif