Open a zip file.
zip = ZIP_Open("file.zip");
Close a zip file.
ZIP_Close(zip);
Add a file to the zip archive.
ZIP_Add(zip, "temp/test.txt", "test.txt");
Rename a file in the zip archive.
ZIP_Rename(zip, "test.txt", "test_new.txt");
Delete a file in the zip archive.
ZIP_Delete(zip, filepath);