Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at nocache-cleanup 18 lines 435 B view raw
1/* SPDX-License-Identifier: 0BSD */ 2 3/* 4 * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd 5 * 6 * Author: Lasse Collin <lasse.collin@tukaani.org> 7 */ 8 9#ifndef DECOMPRESS_UNXZ_H 10#define DECOMPRESS_UNXZ_H 11 12int 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