aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/decompress/inflate.h
blob: 1d0aedef982206fae64706263b35024b9373e6b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef LINUX_DECOMPRESS_INFLATE_H
#define LINUX_DECOMPRESS_INFLATE_H

int gunzip(unsigned char *inbuf, int len,
	   int(*fill)(void*, unsigned int),
	   int(*flush)(void*, unsigned int),
	   unsigned char *output,
	   int *pos,
	   void(*error_fn)(char *x));
#endif