]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/decompress/inflate.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / include / linux / decompress / inflate.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
af661e83
RK
2#ifndef LINUX_DECOMPRESS_INFLATE_H
3#define LINUX_DECOMPRESS_INFLATE_H
bc22c17e 4
d97b07c5
YL
5int gunzip(unsigned char *inbuf, long len,
6 long (*fill)(void*, unsigned long),
7 long (*flush)(void*, unsigned long),
bc22c17e 8 unsigned char *output,
d97b07c5 9 long *pos,
bc22c17e
AK
10 void(*error_fn)(char *x));
11#endif