blob: 77cfa46780cfb121a0dd80055c49e0ef4602fc94 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -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