9
0
Fork 0
barebox/include/linux/decompress/unlz4.h

11 lines
243 B
C

#ifndef DECOMPRESS_UNLZ4_H
#define DECOMPRESS_UNLZ4_H
int decompress_unlz4(unsigned char *inbuf, int len,
int(*fill)(void*, unsigned int),
int(*flush)(void*, unsigned int),
unsigned char *output,
int *pos,
void(*error)(char *x));
#endif