Subversion Repositories SvarDOS

Rev

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