OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
include
/
linux
/
decompress
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
bunzip2.h
305 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
generic.h
1.49 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
inflate.h
314 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mm.h
1.86 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
unlz4.h
279 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unlzma.h
292 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unlzo.h
279 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unxz.h
499 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: unxz.h
Close
/* * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd * * Author: Lasse Collin <lasse.collin@tukaani.org> * * 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