Skip to content

thechampagne/zip-pascal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zip-pascal

Pascal binding for a portable, simple zip library.

Example

program main; {$linklib c} {$linklib zip} uses zip; const content : Pchar = 'test content'; var z : ^zip_t; begin z := zip_open('/tmp/pascal.zip', 6, 'w'); zip_entry_open(z, 'test'); zip_entry_write(z, content, strlen(content)); zip_entry_close(z); zip_close(z); end.

References

License

This repo is released under the MIT License.

About

Pascal binding for a portable, simple zip library.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages