Xindong Xu | b84a662 | 2023-04-04 08:56:00 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | #ifndef DECOMPRESS_UNLZ4_H | ||||
3 | #define DECOMPRESS_UNLZ4_H | ||||
4 | |||||
5 | #include <linux/types.h> | ||||
6 | #include <linux/string.h> | ||||
7 | |||||
8 | int unlz4(const void *src, size_t srcn, void *dst, size_t *dstn); | ||||
9 | #endif |