projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[linux-2.6]
/
include
/
linux
/
decompress
/
inflate.h
1
#ifndef INFLATE_H
2
#define INFLATE_H
3
4
/* Other housekeeping constants */
5
#define INBUFSIZ 4096
6
7
int 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