summaryrefslogtreecommitdiffstats
path: root/include/gunzip.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gunzip.h')
-rw-r--r--include/gunzip.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/gunzip.h b/include/gunzip.h
new file mode 100644
index 0000000000..8c0aef1ba5
--- /dev/null
+++ b/include/gunzip.h
@@ -0,0 +1,10 @@
+#ifndef INFLATE_H
+#define INFLATE_H
+
+int gunzip(unsigned char *inbuf, int len,
+ int(*fill)(void*, unsigned int),
+ int(*flush)(void*, unsigned int),
+ unsigned char *output,
+ int *pos,
+ void(*error_fn)(char *x));
+#endif