Skip to content
/ ZPack Public

Embeddable archive library with zstd compression

License

Notifications You must be signed in to change notification settings

IamFake/ZPack

Repository files navigation

ZPack

Embeddable library for creating archives with zstd compression.

ZPack pack;
  
pack.open("/path/to/filename", /* trunicate? */true);
pack.packItem("special_item", "Text to write into item", "");
pack.packFile("/path/to/another/file");
pack.write();
pack.close();
ZPack pack;
  
pack.open("/path/to/filename", /* trunicate? */true);

auto toStr = pack.extractStr("special_item");
pack.extractFile("file", "/path/to/destination");

pack.close();

Some examples may be found in main_test.cpp

About

Embeddable archive library with zstd compression

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published