BaseMax / ZMiniCArchiveCompressor

C software to compress and archive files with CLI console. (miniz)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ZMini C Archive Compressor

C software to compress and archive files with CLI console. (miniz)

Compile

gcc compressor.c -o compressor -O3

Using

./compressor c input.txt output.x
./compressor d output.x input.txt
max@base:~/compress$ ./compressor d o.txt oi.txt
Mode: d, Level: 10
Input File: "o.txt"
Output File: "oi.txt"
Input file size: 2107
Total input bytes: 2107
Total output bytes: 4275
Done.
max@base:~/compress$ ./compressor c i.txt o.txt
Mode: c, Level: 10
Input File: "i.txt"
Output File: "o.txt"
Input file size: 4275
Total input bytes: 4275
Total output bytes: 2107
Done.

Tested on: Linux base 5.3.0-40-generic (Cross-platform/ miniz)

Similar Projects

Credit

Thanks to Rich Geldreich, Rich Geldreich, Alex Evans, Paul Holden, Thorsten Scheuermann, Matt Pritchard, Sean Barrett, Bruce Dawson, and Janez Zemva. (miniz library)


Max Base

My nickname is Max, Programming language developer, Full-stack programmer. I love computer scientists, researchers, and compilers. (Max Base)

Asrez Team

A team includes some programmer, developer, designer, researcher(s) especially Max Base.

Asrez Team

About

C software to compress and archive files with CLI console. (miniz)

License:GNU General Public License v3.0


Languages

Language:C 100.0%