summaryrefslogtreecommitdiffstats
path: root/hostTools/lzma/decompress/7z.h
blob: ca8ea7f5db20c23ab8b2ede754ea2e496577e758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __7Z_H
#define __7Z_H

#if defined __cplusplus
extern "C"
{
#endif

int decompress_lzma_7z(unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned out_size);

#if defined __cplusplus
}
#endif

#endif