/include/linux/decompress/bunzip2.h
C++ Header | 10 lines | 9 code | 1 blank | 0 comment | 0 complexity | 5c9d298edb47040f67ffa44af145502e MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
1#ifndef DECOMPRESS_BUNZIP2_H 2#define DECOMPRESS_BUNZIP2_H 3 4int bunzip2(unsigned char *inbuf, int len, 5 int(*fill)(void*, unsigned int), 6 int(*flush)(void*, unsigned int), 7 unsigned char *output, 8 int *pos, 9 void(*error)(char *x)); 10#endif