Registry / serialization / kubazip

kubazip

JSON →
library0.3.6vcpkgunverified

A portable, simple zip library written in C

vcpkg install kubazip
INSTALL
IMPORT
SIG · KUBAZIP
K
kubazip
serializationcppv0.3.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

zip.h
#include <zip.h>

Create a zip file and add an entry

#include <zip.h> #include <iostream> int main() { struct zip_t *zip = zip_open("test.zip", ZIP_DEFAULT_COMPRESSION_LEVEL, 'w'); if (zip) { zip_entry_open(zip, "file.txt"); zip_entry_write(zip, "Hello", 5); zip_entry_close(zip); zip_close(zip); std::cout << "Created test.zip" << std::endl; } return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.3.6latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

kubazip — pip install kubazip · libregistry