1 | /* |
1 | /* |
2 | * Copyright (c) 2000 Marc Alexander Lehmann <pcg@goof.com> |
2 | * Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com> |
3 | * |
3 | * |
4 | * Redistribution and use in source and binary forms, with or without modifica- |
4 | * Redistribution and use in source and binary forms, with or without modifica- |
5 | * tion, are permitted provided that the following conditions are met: |
5 | * tion, are permitted provided that the following conditions are met: |
6 | * |
6 | * |
7 | * 1. Redistributions of source code must retain the above copyright notice, |
7 | * 1. Redistributions of source code must retain the above copyright notice, |
… | |
… | |
31 | |
31 | |
32 | /*********************************************************************** |
32 | /*********************************************************************** |
33 | ** |
33 | ** |
34 | ** lzf -- an extremely fast/free compression/decompression-method |
34 | ** lzf -- an extremely fast/free compression/decompression-method |
35 | ** http://liblzf.plan9.de/ |
35 | ** http://liblzf.plan9.de/ |
36 | ** |
|
|
37 | ** Based on ideas by Hermann Vogt, but liblzf is a total |
|
|
38 | ** re-implementation of LZV that is not compatible to the |
|
|
39 | ** original lzv code. |
|
|
40 | ** |
36 | ** |
41 | ** This algorithm is believed to be patent-free. |
37 | ** This algorithm is believed to be patent-free. |
42 | ** |
38 | ** |
43 | ***********************************************************************/ |
39 | ***********************************************************************/ |
44 | |
40 | |