From af1a266670d040d2f4083ff309d732d648afba2a Mon Sep 17 00:00:00 2001 From: Angelos Mouzakitis Date: Tue, 10 Oct 2023 14:33:42 +0000 Subject: Add submodule dependency files Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec --- roms/u-boot/lib/lzma/LzmaTools.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 roms/u-boot/lib/lzma/LzmaTools.h (limited to 'roms/u-boot/lib/lzma/LzmaTools.h') diff --git a/roms/u-boot/lib/lzma/LzmaTools.h b/roms/u-boot/lib/lzma/LzmaTools.h new file mode 100644 index 000000000..e52dfb8fa --- /dev/null +++ b/roms/u-boot/lib/lzma/LzmaTools.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Usefuls routines based on the LzmaTest.c file from LZMA SDK 4.65 + * + * Copyright (C) 2007-2008 Industrie Dial Face S.p.A. + * Luigi 'Comio' Mantellini (luigi.mantellini@idf-hit.com) + * + * Copyright (C) 1999-2005 Igor Pavlov + */ + +#ifndef __LZMA_TOOL_H__ +#define __LZMA_TOOL_H__ + +#include + +extern int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize, + unsigned char *inStream, SizeT length); +#endif -- cgit