Deleted Added
full compact
uncompr.c (131380) uncompr.c (146081)
1/* uncompr.c -- decompress a memory buffer
2 * Copyright (C) 1995-2003 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
1/* uncompr.c -- decompress a memory buffer
2 * Copyright (C) 1995-2003 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6#include <sys/cdefs.h>
7__FBSDID("$FreeBSD: head/lib/libz/uncompr.c 131380 2004-06-30 23:54:46Z tjr $");
6/* @(#) $Id$ */
8
9#define ZLIB_INTERNAL
10#include "zlib.h"
11
12/* ===========================================================================
13 Decompresses the source buffer into the destination buffer. sourceLen is
14 the byte length of the source buffer. Upon entry, destLen is the total
15 size of the destination buffer, which must be large enough to hold the

--- 47 unchanged lines hidden ---
7
8#define ZLIB_INTERNAL
9#include "zlib.h"
10
11/* ===========================================================================
12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
14 size of the destination buffer, which must be large enough to hold the

--- 47 unchanged lines hidden ---