summaryrefslogtreecommitdiffstats
path: root/include/linux/decompress/unlz4.h
blob: d5b68bf3ec92ae2c4c1d7db106e1a557b0daa344 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DECOMPRESS_UNLZ4_H
#define DECOMPRESS_UNLZ4_H

int 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