/usr/src/linux-headers-5.15.0-181/include/linux/decompress
NameSizeModeActions
bunzip2.h3050644editdlrm
generic.h15230644editdlrm
inflate.h3140644editdlrm
mm.h19020644editdlrm
unlz4.h2790644editdlrm
unlzma.h2920644editdlrm
unlzo.h2790644editdlrm
unxz.h4990644editdlrm
unzstd.h3130644editdlrm
Edit: /usr/src/linux-headers-5.15.0-181/include/linux/decompress/unxz.h (499B)
/* * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd * * Author: Lasse Collin * * This file has been put into the public domain. * You can do whatever you want with this file. */ #ifndef DECOMPRESS_UNXZ_H #define DECOMPRESS_UNXZ_H int unxz(unsigned char *in, long in_size, long (*fill)(void *dest, unsigned long size), long (*flush)(void *src, unsigned long size), unsigned char *out, long *in_used, void (*error)(char *x)); #endif