dolphin-emulator/Externals/liblzma/common/block_decoder.h

22 lines
507 B
C
Raw Normal View History

2025-03-12 09:17:51 +00:00
// SPDX-License-Identifier: 0BSD
2019-12-30 15:07:54 +01:00
///////////////////////////////////////////////////////////////////////////////
//
/// \file block_decoder.h
/// \brief Decodes .xz Blocks
//
// Author: Lasse Collin
//
///////////////////////////////////////////////////////////////////////////////
#ifndef LZMA_BLOCK_DECODER_H
#define LZMA_BLOCK_DECODER_H
#include "common.h"
extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
const lzma_allocator *allocator, lzma_block *block);
#endif