Home | History | Annotate | only in /external/liblzf
Up to higher level directory
NameDateSize
Android.mk05-Oct-2017756
Changes05-Oct-20175.6K
CleanSpec.mk05-Oct-20172.3K
config.h.in05-Oct-2017396
configure05-Oct-2017214.4K
configure.ac05-Oct-2017374
crc32.h05-Oct-20173.9K
cs/05-Oct-2017
install-sh05-Oct-20175.5K
LICENSE05-Oct-20171.4K
lzf.c05-Oct-201712.6K
lzf.h05-Oct-20174.3K
lzf_c.c05-Oct-20178.8K
lzf_d.c05-Oct-20176K
lzfP.h05-Oct-20175.7K
Makefile.in05-Oct-20171.3K
MODULE_LICENSE_BSD05-Oct-20170
NOTICE05-Oct-20171.4K
README05-Oct-20171.2K
README.version05-Oct-201766
src/05-Oct-2017

README

      1 DESCRIPTION
      2     LZF is an extremely fast (not that much slower than a pure memcpy)
      3     compression algorithm. It is ideal for applications where you want to
      4     save *some* space but not at the cost of speed. It is ideal for
      5     repetitive data as well. The module is self-contained and very small.
      6 
      7     It's written in ISO-C with no external dependencies other than what
      8     C provides and can easily be #include'd into your code, no makefile
      9     changes or library builds requires.
     10 
     11     A C implementation without external dependencies is available, too.
     12 
     13     I do not know for certain whether any patents in any countries apply
     14     to this algorithm, but at the moment it is believed that it is free
     15     from any patents. More importantly, it is also free to use in every
     16     software package (see LICENSE).
     17 
     18     See the lzf.h file for details on how the functions in this
     19     mini-library are to be used.
     20 
     21     NOTE: This package contains a very bare-bones command-line utility
     22     which is neither optimized for speed nor for compression. This library
     23     is really intended to be used inside larger programs.
     24 
     25 AUTHOR
     26     This library was written by Marc Lehmann <schmorp (a] schmorp.de> (See also
     27     http://software.schmorp.de/pkg/liblzf).
     28 
     29 
     30 

README.version

      1 URL: http://dist.schmorp.de/liblzf/liblzf-3.6.tar.gz
      2 Version: 3.6
      3