https://github.com/iolanguage/zlib
https://github.com/iolanguage/zlib
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iolanguage/zlib
- Owner: IoLanguage
- License: bsd-3-clause
- Created: 2018-03-11T12:03:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T11:01:31.000Z (about 8 years ago)
- Last Synced: 2025-01-21T00:48:28.276Z (over 1 year ago)
- Language: C
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zlib
The Zlib object can be used to compress and uncompress data using the
zlib
lossless data compression algorithm.
Example use:
```Io
compressedData := Zlib compress(uncompressedData)
uncompressedData := Zlib uncompress(compressedData)
```
# Installation
`zlib` should be installed and foundable in your system. Then:
```
eerie install https://github.com/IoLanguage/Zlib.git
```