https://github.com/kgabis/compressor
Implementation of Huffman coding lossless compression in C.
https://github.com/kgabis/compressor
c huffman-coding
Last synced: 6 months ago
JSON representation
Implementation of Huffman coding lossless compression in C.
- Host: GitHub
- URL: https://github.com/kgabis/compressor
- Owner: kgabis
- Created: 2012-08-30T22:21:03.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2017-04-02T09:12:03.000Z (over 8 years ago)
- Last Synced: 2025-03-26T10:01:34.906Z (7 months ago)
- Topics: c, huffman-coding
- Language: C
- Homepage:
- Size: 59.6 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compressor
## About
Compressor is a implementation of Huffman coding lossless data compression in C. It's work in progress, so please USE IT AT YOUR OWN RISK. I AM NOT RESPONSIBLE FOR ANY LOST DATA.## How to build it
You can build it with xcode, or use makefile in Compressor folder.## How to use it
To compress:
```
compressor -c source_file [-o destination_file]
```To decompress:
```
compressor -d source_file [-o destination_file]
```## License
[WTFPL - Do What The Fuck You Want To Public License](http://sam.zoy.org/wtfpl/)