1
0
Fork 0
mirror of https://github.com/HamletDuFromage/sigpatches-updater.git synced 2024-11-08 05:01:46 +00:00
sigpatches-updater/source/extract.cpp
2020-09-12 18:12:07 +02:00

9 lines
No EOL
191 B
C++

#include "extract.hpp"
bool extract(std::string filename){
chdir("/");
zipper::Unzipper unzipper(filename);
bool res = unzipper.extract();
unzipper.close();
return res;
}