mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-07 16:58:04 -04:00
12 lines
253 B
C
12 lines
253 B
C
#ifndef DECOMPRESS_UNLZMA_H
|
|
#define DECOMPRESS_UNLZMA_H
|
|
|
|
int unlzma(unsigned char *, long,
|
|
long (*fill)(void*, unsigned long),
|
|
long (*flush)(void*, unsigned long),
|
|
unsigned char *output,
|
|
long *posp,
|
|
void(*error)(char *x)
|
|
);
|
|
|
|
#endif
|