allwinner_a64/android/external/liblzf
2018-08-08 16:14:42 +08:00
..
cs upload android base code part2 2018-08-08 16:14:42 +08:00
src/org/liblzf upload android base code part2 2018-08-08 16:14:42 +08:00
Android.mk upload android base code part2 2018-08-08 16:14:42 +08:00
Changes upload android base code part2 2018-08-08 16:14:42 +08:00
CleanSpec.mk upload android base code part2 2018-08-08 16:14:42 +08:00
config.h.in upload android base code part2 2018-08-08 16:14:42 +08:00
configure upload android base code part2 2018-08-08 16:14:42 +08:00
configure.ac upload android base code part2 2018-08-08 16:14:42 +08:00
crc32.h upload android base code part2 2018-08-08 16:14:42 +08:00
install-sh upload android base code part2 2018-08-08 16:14:42 +08:00
LICENSE upload android base code part2 2018-08-08 16:14:42 +08:00
lzf.c upload android base code part2 2018-08-08 16:14:42 +08:00
lzf.h upload android base code part2 2018-08-08 16:14:42 +08:00
lzf_c.c upload android base code part2 2018-08-08 16:14:42 +08:00
lzf_d.c upload android base code part2 2018-08-08 16:14:42 +08:00
lzfP.h upload android base code part2 2018-08-08 16:14:42 +08:00
Makefile.in upload android base code part2 2018-08-08 16:14:42 +08:00
MODULE_LICENSE_BSD upload android base code part2 2018-08-08 16:14:42 +08:00
NOTICE upload android base code part2 2018-08-08 16:14:42 +08:00
README upload android base code part2 2018-08-08 16:14:42 +08:00
README.version upload android base code part2 2018-08-08 16:14:42 +08:00

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 whether 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 intended 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).