diff options
Diffstat (limited to 'include/linux/decompress/inflate.h')
-rw-r--r-- | include/linux/decompress/inflate.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/decompress/inflate.h b/include/linux/decompress/inflate.h new file mode 100644 index 000000000..e4f411fdb --- /dev/null +++ b/include/linux/decompress/inflate.h @@ -0,0 +1,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 |