blob: 550ae8783d1b5a4312e6401bfb64a0d63e0029ee [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef DECOMPRESS_UNLZO_H
3#define DECOMPRESS_UNLZO_H
4
5int unlzo(unsigned char *inbuf, long len,
6 long (*fill)(void*, unsigned long),
7 long (*flush)(void*, unsigned long),
8 unsigned char *output,
9 long *pos,
10 void(*error)(char *x));
11#endif