blob: ace7518f663be3ca427c18ebbf9c19906b799019 [file] [log] [blame]
#ifndef DECOMPRESS_GENERIC_H
#define DECOMPRESS_GENERIC_H
typedef int (*decompress_fn) (unsigned char *inbuf, int len,
int(*fill)(void*, unsigned int),
int(*flush)(void*, unsigned int),
unsigned char *outbuf,
int *posp,
void(*error)(char *x));
decompress_fn decompress_method(const unsigned char *inbuf, int len,
const char **name);
#endif