2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2009-01-04 22:46:16 +01:00
|
|
|
#ifndef DECOMPRESS_BUNZIP2_H
|
|
|
|
|
#define DECOMPRESS_BUNZIP2_H
|
|
|
|
|
|
2014-08-08 14:23:14 -07:00
|
|
|
int bunzip2(unsigned char *inbuf, long len,
|
|
|
|
|
long (*fill)(void*, unsigned long),
|
|
|
|
|
long (*flush)(void*, unsigned long),
|
2009-01-04 22:46:16 +01:00
|
|
|
unsigned char *output,
|
2014-08-08 14:23:14 -07:00
|
|
|
long *pos,
|
2009-01-04 22:46:16 +01:00
|
|
|
void(*error)(char *x));
|
|
|
|
|
#endif
|