aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/decompress/inflate.h
blob: e4f411fdbd24b2461959a454e98dc158344c1ec0 (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, long len,
	   long (*fill)(void*, unsigned long),
	   long (*flush)(void*, unsigned long),
	   unsigned char *output,
	   long *pos,
	   void(*error_fn)(char *x));
#endif