Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: b7392d2247cfe6771f95d256374f1a8e6a6f48d6 authored by Linus Torvalds on 29 December 2014, 00:49:37 UTC
Linux 3.19-rc2
Tip revision: b7392d2
unlzma.h
#ifndef DECOMPRESS_UNLZMA_H
#define DECOMPRESS_UNLZMA_H

int unlzma(unsigned char *, long,
	   long (*fill)(void*, unsigned long),
	   long (*flush)(void*, unsigned long),
	   unsigned char *output,
	   long *posp,
	   void(*error)(char *x)
	);

#endif
back to top