yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame^] | 1 | #ifndef GUN_ZIP_H |
2 | #define GUN_ZIP_H | ||||
3 | |||||
4 | #include "zconf.h" | ||||
5 | |||||
6 | int 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 |