blob: f8bdd1ffdadb1b1e54c6d5fb2266768f634377cf [file] [log] [blame]
Googlere00b8eb2019-07-08 16:37:07 -07001/*
2 * Usefuls routines based on the LzmaTest.c file from LZMA SDK 4.65
3 *
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
Googler695f9d92023-09-11 15:38:29 +08008 *
9 * SPDX-License-Identifier: GPL-2.0+
Googlere00b8eb2019-07-08 16:37:07 -070010 */
11
12#ifndef __LZMA_TOOL_H__
13#define __LZMA_TOOL_H__
14
15#include <lzma/LzmaTypes.h>
16
17extern int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,
18 unsigned char *inStream, SizeT length);
19#endif