1 //
2 // miniunz.h
3 //
4 //
5 // Copyright (c) 2020 Alibaba All rights reserved.
6 //
7 
8 #ifndef __APPX_MINIUNZ_H__
9 #define __APPX_MINIUNZ_H__
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 int miniUnzip(const char* filePath, const char* outPath);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif  // __APPX_MINIUNZ_H__
22