mirror of
https://github.com/HamletDuFromage/sigpatches-updater.git
synced 2024-11-08 05:01:46 +00:00
9 lines
191 B
C++
9 lines
191 B
C++
|
#include "extract.hpp"
|
||
|
|
||
|
bool extract(std::string filename){
|
||
|
chdir("/");
|
||
|
zipper::Unzipper unzipper(filename);
|
||
|
bool res = unzipper.extract();
|
||
|
unzipper.close();
|
||
|
return res;
|
||
|
}
|