文件名称:LZX格式解压缩源代码
文件大小:9KB
文件格式:GZ
更新时间:2014-05-09 04:15:15
LZX 解压缩 源代码
/* $VER: unlzx.c 1.0 (22.2.98) */ /* Created: 11.2.98 */ /* Added Pipe support to read from stdin (03.4.01, Erik Meusel) */ /* LZX Extract in (supposedly) portable C. */ /* Compile with: */ /* gcc unlzx.c -ounlzx -O6 */ /* Thanks to Dan Fraser for decoding the coredumps and helping me track */ /* down some HIDEOUSLY ANNOYING bugs. */ /* Everything is accessed as unsigned char's to try and avoid problems */ /* with byte order and alignment. Most of the decrunch functions */ /* encourage overruns in the buffers to make things as fast as possible. */ /* All the time is taken up in crc_calc() and decrunch() so they are */ /* pretty damn optimized. Don't try to understand this program. */