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