repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git]
/
include
/
linux
/
decompress
/
unlzma.h
blob
1c930f1251823b53fbd9f630c27784c0e34b261d
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef DECOMPRESS_UNLZMA_H
3
#define DECOMPRESS_UNLZMA_H
4
5
int
unlzma
(
unsigned char
*,
long
,
6
long
(*
fill
)(
void
*,
unsigned long
),
7
long
(*
flush
)(
void
*,
unsigned long
),
8
unsigned char
*
output
,
9
long
*
posp
,
10
void
(*
error
)(
char
*
x
)
11
);
12
13
#endif