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

9 lines
191 B
C++
Raw Normal View History

2020-09-12 17:12:07 +01:00
#include "extract.hpp"
bool extract(std::string filename){
chdir("/");
zipper::Unzipper unzipper(filename);
bool res = unzipper.extract();
unzipper.close();
return res;
}