An open API service indexing awesome lists of open source software.

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.

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/)