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 int gunzip(unsigned char *inbuf, int len, 6 long (*fill)(void*, unsigned long), !! 5 int(*fill)(void*, unsigned int), 7 long (*flush)(void*, unsigned long) !! 6 int(*flush)(void*, unsigned int), 8 unsigned char *output, 7 unsigned char *output, 9 long *pos, !! 8 int *pos, 10 void(*error_fn)(char *x)); 9 void(*error_fn)(char *x)); 11 #endif 10 #endif 12 11
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.