Merge remote-tracking branches 'asoc/topic/nau8824', 'asoc/topic/nau8825' and 'asoc...
[linux-2.6-block.git] / include / linux / decompress / unlz4.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
e76e1fdf
KL
2#ifndef DECOMPRESS_UNLZ4_H
3#define DECOMPRESS_UNLZ4_H
4
d97b07c5
YL
5int unlz4(unsigned char *inbuf, long len,
6 long (*fill)(void*, unsigned long),
7 long (*flush)(void*, unsigned long),
e76e1fdf 8 unsigned char *output,
d97b07c5 9 long *pos,
e76e1fdf
KL
10 void(*error)(char *x));
11#endif