Changeset 34b2f54d in mainline for uspace/lib/compress/inflate.c
- Timestamp:
- 2022-08-13T13:26:49Z (3 years ago)
- Children:
- 664b7f8
- Parents:
- 39916d6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/compress/inflate.c
r39916d6 r34b2f54d 1 1 /* 2 * SPDX-FileCopyrightText: 20 10 Mark Adler2 * SPDX-FileCopyrightText: 2002-2010 Mark Adler 3 3 * SPDX-FileCopyrightText: 2010 Martin Decky 4 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 5 * SPDX-License-Identifier: BSD-3-Clause AND LicenseRef-InflateLicense 6 6 */ 7 7 … … 15 15 * All dynamically allocated memory memory is taken from the stack. The 16 16 * stack usage should be typically bounded by 2 KB. 17 *18 * Original copyright notice:19 *20 * Copyright (C) 2002-2010 Mark Adler, all rights reserved21 * version 2.1, 4 Apr 201022 *23 * This software is provided 'as-is', without any express or implied24 * warranty. In no event will the author be held liable for any damages25 * arising from the use of this software.26 *27 * Permission is granted to anyone to use this software for any purpose,28 * including commercial applications, and to alter it and redistribute it29 * freely, subject to the following restrictions:30 *31 * 1. The origin of this software must not be misrepresented; you must not32 * claim that you wrote the original software. If you use this software33 * in a product, an acknowledgment in the product documentation would be34 * appreciated but is not required.35 * 2. Altered source versions must be plainly marked as such, and must not36 * be misrepresented as being the original software.37 * 3. This notice may not be removed or altered from any source38 * distribution.39 *40 * Mark Adler <madler@alumni.caltech.edu>41 *42 17 */ 43 18
Note:
See TracChangeset
for help on using the changeset viewer.