mirror of
https://git.tukaani.org/xz.git
synced 2025-09-30 14:28:28 +00:00
There is a tiny risk of causing breakage: If an application assigns lzma_stream.allocator to a non-const pointer, such code won't compile anymore. I don't know why anyone would do such a thing though, so in practice this shouldn't cause trouble. Thanks to Jan Kratochvil for the patch.
24 lines
617 B
C
24 lines
617 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
/// \file filter_decoder.c
|
|
/// \brief Filter ID mapping to filter-specific functions
|
|
//
|
|
// Author: Lasse Collin
|
|
//
|
|
// This file has been put into the public domain.
|
|
// You can do whatever you want with this file.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef LZMA_FILTER_DECODER_H
|
|
#define LZMA_FILTER_DECODER_H
|
|
|
|
#include "common.h"
|
|
|
|
|
|
extern lzma_ret lzma_raw_decoder_init(
|
|
lzma_next_coder *next, const lzma_allocator *allocator,
|
|
const lzma_filter *options);
|
|
|
|
#endif
|