net/mlx5: Fix use-after-free in self-healing flow
[linux-2.6-block.git] / include / linux / decompress / inflate.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef LINUX_DECOMPRESS_INFLATE_H
3 #define LINUX_DECOMPRESS_INFLATE_H
4
5 int gunzip(unsigned char *inbuf, long len,
6            long (*fill)(void*, unsigned long),
7            long (*flush)(void*, unsigned long),
8            unsigned char *output,
9            long *pos,
10            void(*error_fn)(char *x));
11 #endif