1 /* SPDX-License-Identifier: GPL-2.0 */ !! 1 #ifndef INFLATE_H 2 #ifndef LINUX_DECOMPRESS_INFLATE_H !! 2 #define INFLATE_H 3 #define LINUX_DECOMPRESS_INFLATE_H << 4 3 5 int gunzip(unsigned char *inbuf, long len, !! 4 /* Other housekeeping constants */ 6 long (*fill)(void*, unsigned long), !! 5 #define INBUFSIZ 4096 7 long (*flush)(void*, unsigned long) !! 6 >> 7 int gunzip(unsigned char *inbuf, int len, >> 8 int(*fill)(void*, unsigned int), >> 9 int(*flush)(void*, unsigned int), 8 unsigned char *output, 10 unsigned char *output, 9 long *pos, !! 11 int *pos, 10 void(*error_fn)(char *x)); 12 void(*error_fn)(char *x)); 11 #endif 13 #endif 12 14
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.