Subversion Repositories SvarDOS

Rev

Rev 1889 | Details | Compare with Previous | Last modification | View Log | RSS feed

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