• Home
Name Date Size #Lines LOC

..--

cs/03-May-2024-353231

src/org/liblzf/03-May-2024-345164

Android.mkD03-May-2024756 3718

ChangesD03-May-20245.6 KiB137114

CleanSpec.mkD03-May-20242.3 KiB521

LICENSED03-May-20241.4 KiB2821

MODULE_LICENSE_BSDD03-May-20240

Makefile.inD03-May-20241.3 KiB6750

NOTICED03-May-20241.4 KiB2821

READMED03-May-20241.2 KiB3021

config.h.inD03-May-2024396 1711

configureD03-May-2024214.4 KiB7,8726,795

configure.acD03-May-2024374 2620

crc32.hD03-May-20243.9 KiB6659

install-shD03-May-20245.5 KiB252153

lzf.cD03-May-202412.6 KiB538419

lzf.hD03-May-20244.3 KiB10110

lzfP.hD03-May-20245.7 KiB18673

lzf_c.cD03-May-20248.8 KiB292182

lzf_d.cD03-May-20246 KiB186128

README

1DESCRIPTION
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
25AUTHOR
26    This library was written by Marc Lehmann <schmorp@schmorp.de> (See also
27    http://software.schmorp.de/pkg/liblzf).
28
29
30