mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-05 20:55:13 +07:00
14 lines
291 B
C
14 lines
291 B
C
|
#ifndef INFLATE_H
|
||
|
#define INFLATE_H
|
||
|
|
||
|
/* Other housekeeping constants */
|
||
|
#define INBUFSIZ 4096
|
||
|
|
||
|
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
|