License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / include / linux / decompress / bunzip2.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
bc22c17e
AK
2#ifndef DECOMPRESS_BUNZIP2_H
3#define DECOMPRESS_BUNZIP2_H
4
d97b07c5
YL
5int bunzip2(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)(char *x));
11#endif