You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|
|
|