1
0
mirror of https://git.tukaani.org/xz.git synced 2026-04-01 21:58:02 +00:00
xz/src/liblzma/simple/simple_decoder.h
Lasse Collin 02ddf09bc3 Put the interesting parts of XZ Utils into the public domain.
Some minor documentation cleanups were made at the same time.
2009-04-13 11:27:40 +03:00

23 lines
616 B
C

///////////////////////////////////////////////////////////////////////////////
//
/// \file simple_decoder.h
/// \brief Properties decoder for simple filters
//
// Author: Lasse Collin
//
// This file has been put into the public domain.
// You can do whatever you want with this file.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef LZMA_SIMPLE_DECODER_H
#define LZMA_SIMPLE_DECODER_H
#include "simple_coder.h"
extern lzma_ret lzma_simple_props_decode(
void **options, lzma_allocator *allocator,
const uint8_t *props, size_t props_size);
#endif