Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef DECOMPRESS_BUNZIP2_H
0003 #define DECOMPRESS_BUNZIP2_H
0004 
0005 int bunzip2(unsigned char *inbuf, long len,
0006         long (*fill)(void*, unsigned long),
0007         long (*flush)(void*, unsigned long),
0008         unsigned char *output,
0009         long *pos,
0010         void(*error)(char *x));
0011 #endif