Newer
Older
barebox / include / linux / decompress / unlz4.h
@Kyungsik Lee Kyungsik Lee on 16 Jul 2013 243 bytes lib: Add support for LZ4-compressed kernel
#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