repo.or.cz
/
linux-2.6
/
next.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'cfq-2.6.33' into for-2.6.33
[linux-2.6/next.git]
/
include
/
linux
/
decompress
/
inflate.h
blob
f9b06ccc3e5c2e52ba0637cbc83c1e24d7e9877c
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