aboutsummaryrefslogtreecommitdiff
path: root/unzip.h
diff options
context:
space:
mode:
authorneonloop2021-08-04 15:09:12 +0000
committerneonloop2021-08-04 15:09:12 +0000
commit99632f66e74fc57c463072be312d634aeb67bc61 (patch)
treee4ccaf52b93d04c69865d82556e2ce4cd3a6c599 /unzip.h
downloadpicoarch-99632f66e74fc57c463072be312d634aeb67bc61.tar.gz
picoarch-99632f66e74fc57c463072be312d634aeb67bc61.tar.bz2
picoarch-99632f66e74fc57c463072be312d634aeb67bc61.zip
Initial commit
Diffstat (limited to 'unzip.h')
-rw-r--r--unzip.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/unzip.h b/unzip.h
new file mode 100644
index 0000000..fcceb80
--- /dev/null
+++ b/unzip.h
@@ -0,0 +1,9 @@
+#ifndef __UNZIP_H_
+#define __UNZIP_H_
+
+#include <stdio.h>
+
+int unzip_tmp(FILE *zip, const char **extensions, char *filename, size_t len);
+int unzip(FILE *zip, const char **extensions, FILE *dest);
+
+#endif