Subversion Repositories SvarDOS

Rev

Rev 614 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 614 Rev 1889
Line 1... Line 1...
1
/*
1
/*
2
 * simple unzip tool that unzips the content of a zip archive to current directory
2
 * simple unzip tool that unzips the content of a zip archive to current directory
-
 
3
 * if listonly is set to a non-zero value then unzip() only lists the files
3
 * returns 0 on success
4
 * returns 0 on success
4
 *
5
 *
5
 * this file is part of pkg (SvarDOS)
6
 * this file is part of pkg (SvarDOS)
6
 * copyright (C) 2021 Mateusz Viste
7
 * copyright (C) 2021-2024 Mateusz Viste
7
 */
8
 */
8
 
9
 
9
#ifndef unzip_h
10
#ifndef unzip_h
10
#define unzip_h
11
#define unzip_h
11
 
12
 
12
int unzip(const char *zipfile);
13
int unzip(const char *zipfile, unsigned char listonly);
13
 
14
 
14
#endif
15
#endif