]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/lzma/LzmaTools.h
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
[people/ms/u-boot.git] / lib / lzma / LzmaTools.h
CommitLineData
fc9c1727 1/*
caf72ff3 2 * Usefuls routines based on the LzmaTest.c file from LZMA SDK 4.65
fc9c1727
LCM
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
8 *
1a459660 9 * SPDX-License-Identifier: GPL-2.0+
fc9c1727
LCM
10 */
11
12#ifndef __LZMA_TOOL_H__
13#define __LZMA_TOOL_H__
14
caf72ff3 15#include <lzma/LzmaTypes.h>
fc9c1727
LCM
16
17extern int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,
18 unsigned char *inStream, SizeT length);
19#endif