Subversion Repositories SvarDOS

Rev

Rev 296 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 296 Rev 614
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
 * returns 0 on success
3
 * returns 0 on success
4
 *
4
 *
5
 * this file is part of pkg (SvarDOS)
5
 * this file is part of pkg (SvarDOS)
6
 * copyright (C) 2021 Mateusz Viste
6
 * copyright (C) 2021 Mateusz Viste
7
 */
7
 */
8
 
8
 
9
#ifndef unzip_h
9
#ifndef unzip_h
10
#define unzip_h
10
#define unzip_h
11
 
11
 
12
int unzip(const char *zipfile);
12
int unzip(const char *zipfile);
13
 
13
 
14
#endif
14
#endif
15
 
15