Path: blob/master/Utilities/cmliblzma/liblzma/lzma/lzma2_decoder.h
3156 views
// SPDX-License-Identifier: 0BSD12///////////////////////////////////////////////////////////////////////////////3//4/// \file lzma2_decoder.h5/// \brief LZMA2 decoder6///7// Authors: Igor Pavlov8// Lasse Collin9//10///////////////////////////////////////////////////////////////////////////////1112#ifndef LZMA_LZMA2_DECODER_H13#define LZMA_LZMA2_DECODER_H1415#include "common.h"1617extern lzma_ret lzma_lzma2_decoder_init(lzma_next_coder *next,18const lzma_allocator *allocator,19const lzma_filter_info *filters);2021extern uint64_t lzma_lzma2_decoder_memusage(const void *options);2223extern lzma_ret lzma_lzma2_props_decode(24void **options, const lzma_allocator *allocator,25const uint8_t *props, size_t props_size);2627#endif282930