diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-05-08 14:52:05 +0100 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-05-08 14:52:05 +0100 |
commit | dee0cd250574b52e74a9390f6f9c1efd818223d4 (patch) | |
tree | ab1a7eb424a8064088d3517ea1731ef22ad96a4d /inflate.c | |
parent | 1c0bc9c51fdc8c3d2350cae1706f990b480bf0bd (diff) | |
parent | 3a941f4ae2213f26118f5cfde03ca793b31ca838 (diff) | |
download | figlet-dee0cd250574b52e74a9390f6f9c1efd818223d4.tar.gz |
Merge tag 'upstream/2.2.3'
Upstream version 2.2.3
Diffstat (limited to 'inflate.c')
-rw-r--r-- | inflate.c | 45 |
1 files changed, 24 insertions, 21 deletions
@@ -1,32 +1,35 @@ /* * inflate.c - inflate decompression routine * - * Version 1.1 + * Version 1.1.2 */ /* - * Copyright (c) 1995, Edward B. Hamrick + * Copyright (C) 1995, Edward B. Hamrick * - * Permission to use, copy, modify, distribute, and sell this software and - * its documentation for any purpose is hereby granted without fee, provided - * that + * Permission to use, copy, modify, and distribute this software and + * its documentation for any purpose and without fee is hereby granted, + * provided that the above copyright notice appear in all copies and + * that both that copyright notice and this permission notice appear in + * supporting documentation, and that the name of the copyright holders + * not be used in advertising or publicity pertaining to distribution of + * the software without specific, written prior permission. The copyright + * holders makes no representations about the suitability of this software + * for any purpose. It is provided "as is" without express or implied warranty. * - * (i) the above copyright notice and the text in this "C" comment block - * appear in all copies of the software and related documentation, and - * - * (ii) any modifications to this source file must be sent, via e-mail - * to the copyright owner (currently hamrick@primenet.com) within - * 30 days of such modification. - * - * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, - * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY - * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - * - * IN NO EVENT SHALL EDWARD B. HAMRICK BE LIABLE FOR ANY SPECIAL, INCIDENTAL, - * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER - * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF - * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS + * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, + * IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT + * OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF + * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + * OF THIS SOFTWARE. + */ + +/* + * Changes from 1.1 to 1.1.2: + * Relicensed under the MIT license, with consent of the copyright holders. + * Claudio Matsuoka (Jan 11 2011) */ /* |