initramfs: support initramfs that is bigger than 2GiB
[deliverable/linux.git] / include / linux / decompress / unxz.h
CommitLineData
3ebe1243
LC
1/*
2 * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10#ifndef DECOMPRESS_UNXZ_H
11#define DECOMPRESS_UNXZ_H
12
d97b07c5
YL
13int unxz(unsigned char *in, long in_size,
14 long (*fill)(void *dest, unsigned long size),
15 long (*flush)(void *src, unsigned long size),
16 unsigned char *out, long *in_used,
3ebe1243
LC
17 void (*error)(char *x));
18
19#endif
This page took 0.291243 seconds and 5 git commands to generate.