Skip to content

C:three: binding & wrapper for a portable, simple zip library.

License

Notifications You must be signed in to change notification settings

thechampagne/zip-c3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zip-c3

C3 binding for a portable, simple zip library.

Example

import std::core::string;
import zip;

fn void main() {
    Zip z = zip::open("/tmp/c3.zip", 6, 'w');
    defer z.close();
    
    z.entryOpen("test");
    defer z.entryClose();
    
    string::ZString content = "test content";
    z.entryWrite(content, content.len());
}

References

License

This repo is released under the MIT License.

About

C:three: binding & wrapper for a portable, simple zip library.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages