]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/decompress/inflate.h
bzip2/lzma: library support for gzip, bzip2 and lzma decompression
[mirror_ubuntu-artful-kernel.git] / include / linux / decompress / inflate.h
CommitLineData
bc22c17e
AK
1#ifndef INFLATE_H
2#define INFLATE_H
3
4/* Other housekeeping constants */
5#define INBUFSIZ 4096
6
7int gunzip(unsigned char *inbuf, int len,
8 int(*fill)(void*, unsigned int),
9 int(*flush)(void*, unsigned int),
10 unsigned char *output,
11 int *pos,
12 void(*error_fn)(char *x));
13#endif