blob: f8bdd1ffdadb1b1e54c6d5fb2266768f634377cf [file] [log] [blame]
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +02001/*
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +02002 * Usefuls routines based on the LzmaTest.c file from LZMA SDK 4.65
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +02003 *
4 * Copyright (C) 2007-2008 Industrie Dial Face S.p.A.
5 * Luigi 'Comio' Mantellini (luigi.mantellini@idf-hit.com)
6 *
7 * Copyright (C) 1999-2005 Igor Pavlov
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +020010 */
11
12#ifndef __LZMA_TOOL_H__
13#define __LZMA_TOOL_H__
14
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +020015#include <lzma/LzmaTypes.h>
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +020016
17extern int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,
18 unsigned char *inStream, SizeT length);
19#endif