]> Git Repo - linux.git/blob - include/linux/decompress/unxz.h
Linux 6.14-rc3
[linux.git] / include / linux / decompress / unxz.h
1 /* SPDX-License-Identifier: 0BSD */
2
3 /*
4  * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd
5  *
6  * Author: Lasse Collin <[email protected]>
7  */
8
9 #ifndef DECOMPRESS_UNXZ_H
10 #define DECOMPRESS_UNXZ_H
11
12 int unxz(unsigned char *in, long in_size,
13          long (*fill)(void *dest, unsigned long size),
14          long (*flush)(void *src, unsigned long size),
15          unsigned char *out, long *in_used,
16          void (*error)(char *x));
17
18 #endif
This page took 0.028352 seconds and 4 git commands to generate.