https://github.com/iolanguage/lzo
https://github.com/iolanguage/lzo
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iolanguage/lzo
- Owner: IoLanguage
- License: bsd-3-clause
- Created: 2018-03-11T11:55:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-15T09:11:19.000Z (about 8 years ago)
- Last Synced: 2025-01-21T00:48:48.147Z (over 1 year ago)
- Language: C
- Size: 35.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LZO
The LZO object can be used to compress and uncompress data using the
Lempel-Ziv-Oberhumer (LZO)
lossless data compression algorithm.
Example use:
```Io
compressedData := LZO compress(uncompressedData)
uncompressedData := LZO uncompress(compressedData)
```
# Installation
```
eerie install https://github.com/IoLanguage/LZO.git
```