summaryrefslogtreecommitdiffstats
path: root/include/linux/decompress/unlz4.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/decompress/unlz4.h')
-rw-r--r--include/linux/decompress/unlz4.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/decompress/unlz4.h b/include/linux/decompress/unlz4.h
new file mode 100644
index 000000000..5a235f605
--- /dev/null
+++ b/include/linux/decompress/unlz4.h
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef DECOMPRESS_UNLZ4_H
+#define DECOMPRESS_UNLZ4_H
+
+int unlz4(unsigned char *inbuf, long len,
+ long (*fill)(void*, unsigned long),
+ long (*flush)(void*, unsigned long),
+ unsigned char *output,
+ long *pos,
+ void(*error)(char *x));
+#endif