THIRDPARTYLICENSE revision 4e5b757fbcf21077677360be274461dcd9064106
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * zlib.h -- interface of the 'zlib' general purpose compression library
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * version 1.1.3, July 9th, 1998
a7c412f37cc73d0332887a746e81220cbf09dd00Mark Andrews *
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews *
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * This software is provided 'as-is', without any express or implied
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * warranty. In no event will the authors be held liable for any damages
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * arising from the use of this software.
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews *
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * Permission is granted to anyone to use this software for any purpose,
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * including commercial applications, and to alter it and redistribute it
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * freely, subject to the following restrictions:
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews *
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * 1. The origin of this software must not be misrepresented; you must not
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * claim that you wrote the original software. If you use this software
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * in a product, an acknowledgment in the product documentation would be
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * appreciated but is not required.
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * 2. Altered source versions must be plainly marked as such, and must not be
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * misrepresented as being the original software.
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * 3. This notice may not be removed or altered from any source distribution.
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews *
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * Jean-loup Gailly Mark Adler
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * jloup@gzip.org madler@alumni.caltech.edu
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews *
dbb012765c735ee0d82dedb116cdc7cf18957814Evan Hunt * The data format used by the zlib library is described by RFCs (Request for
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews * (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
c3c8823fed039b3a2b8e5ca8bc2f3301d1dd840eMark Andrews