25Result<ReadableZip>
ZipOpenRead(
const std::string& fs_path);
28Result<void>
AddFile(WritableZip& zip,
const std::string& fs_path);
29Result<void>
AddFileAt(WritableZip& zip,
const std::string& fs_path,
30 const std::string& zip_path);
32Result<void>
ExtractFile(ReadableZip& zip,
const std::string& zip_path,
33 const std::string& host_path);
Definition: alloc_utils.cpp:23
Result< void > AddFile(WritableZip &zip, const std::string &fs_path)
Definition: zip_file.cc:38
Result< void > AddFileAt(WritableZip &zip, const std::string &fs_path, const std::string &zip_path)
Definition: zip_file.cc:43
Result< ReadableZip > ZipOpenRead(const std::string &fs_path)
Definition: zip_file.cc:28
Result< WritableZip > ZipOpenReadWrite(const std::string &fs_path)
Definition: zip_file.cc:32
Result< void > ExtractFile(ReadableZip &zip, const std::string &zip_path, const std::string &host_path)
Definition: zip_file.cc:51