Name Date Size

.. 2013-09-05 01:59:15 9

Changes 2009-02-23 17:10:06 4.9 KiB

config.h.in 2009-02-23 17:10:06 396

configure 2009-02-23 17:10:06 214.4 KiB

configure.ac 2009-02-23 17:10:06 374

crc32.h 2009-02-23 17:10:06 3.9 KiB

cs 2009-02-23 17:10:41 4

install-sh 2009-02-23 17:10:06 5.5 KiB

LICENSE 2009-02-23 17:10:06 1.4 KiB

lzf.c 2009-02-23 17:10:06 12.6 KiB

lzf.h 2009-02-23 17:10:06 4.5 KiB

lzf_c.c 2009-10-06 13:35:04 8.8 KiB

lzf_d.c 2009-02-23 17:10:06 4.3 KiB

lzfP.h 2009-02-23 17:10:06 5 KiB

Makefile.in 2009-02-23 17:10:06 1.3 KiB

Makefile.kmk 2013-09-05 01:59:15 1.5 KiB

README 2009-02-23 17:10:06 1.2 KiB

README

DESCRIPTION
LZF is an extremely fast (not that much slower than a pure memcpy)
compression algorithm. It is ideal for applications where you want to
save *some* space but not at the cost of speed. It is ideal for
repetitive data as well. The module is self-contained and very small.
It's written in ISO-C with no external dependencies other than what
C provides and can easily be #include'd into your code, no makefile
changes or library builds requires.
A C♯ implementation without external dependencies is available, too.
I do not know for certain wether any patents in any countries apply
to this algorithm, but at the moment it is believed that it is free
from any patents. More importantly, it is also free to use in every
software package (see LICENSE).
See the lzf.h file for details on how the functions in this
mini-library are to be used.
NOTE: This package contains a very bare-bones command-line utility
which is neither optimized for speed nor for compression. This library
is really intented to be used inside larger programs.
AUTHOR
This library was written by Marc Lehmann <schmorp@schmorp.de> (See also
http://software.schmorp.de/pkg/liblzf).