xref: /openbmc/linux/include/linux/decompress/unlzma.h (revision 812f77b749a8ae11f58dacf0d3ed65e7ede47458)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef DECOMPRESS_UNLZMA_H
3 #define DECOMPRESS_UNLZMA_H
4 
5 int unlzma(unsigned char *, long,
6 	   long (*fill)(void*, unsigned long),
7 	   long (*flush)(void*, unsigned long),
8 	   unsigned char *output,
9 	   long *posp,
10 	   void(*error)(char *x)
11 	);
12 
13 #endif
14