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