blob: 77cfa46780cfb121a0dd80055c49e0ef4602fc94 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001#ifndef GUN_ZIP_H
2#define GUN_ZIP_H
3
4#include "zconf.h"
5
6int gunzip(unsigned char *inbuf, int len,
7 int(*fill)(void*, unsigned int),
8 int(*flush)(void*, unsigned int),
9 unsigned char *output,
10 int *pos,
11 void(*error_fn)(char *x));
12
13#endif