]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/decompress/unlzo.h
Merge remote-tracking branches 'asoc/topic/max98925', 'asoc/topic/max98927', 'asoc...
[mirror_ubuntu-bionic-kernel.git] / include / linux / decompress / unlzo.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
7dd65feb
AT
2#ifndef DECOMPRESS_UNLZO_H
3#define DECOMPRESS_UNLZO_H
4
d97b07c5
YL
5int unlzo(unsigned char *inbuf, long len,
6 long (*fill)(void*, unsigned long),
7 long (*flush)(void*, unsigned long),
7dd65feb 8 unsigned char *output,
d97b07c5 9 long *pos,
7dd65feb
AT
10 void(*error)(char *x));
11#endif