RCS ID police: add NetBSD RCS IDs to everything. Since it was imported with
normal RCS IDs apparently unmodified (i.e. they were clobbered), remove the normal Id tags so they cause fewer conflicts later.
This commit is contained in:
parent
9867074973
commit
9118c05a03
|
@ -1,3 +1,4 @@
|
|||
$NetBSD: ChangeLog,v 1.2 1996/09/13 00:29:49 cgd Exp $
|
||||
|
||||
ChangeLog file for zlib
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.2 1996/09/12 22:33:40 cgd Exp $
|
||||
#
|
||||
# $NetBSD: Makefile,v 1.3 1996/09/13 00:29:51 cgd Exp $
|
||||
|
||||
LIB= z
|
||||
SRCS= adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c trees.c \
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
$NetBSD: README,v 1.2 1996/09/13 00:29:52 cgd Exp $
|
||||
|
||||
zlib 1.0.4 is a general purpose data compression library. All the code
|
||||
is reentrant (thread safe). The data format used by the zlib library
|
||||
is described by RFCs (Request for Comments) 1950 to 1952 in the files
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: adler32.c,v 1.2 1996/09/13 00:29:54 cgd Exp $ */
|
||||
|
||||
/* adler32.c -- compute the Adler-32 checksum of a data stream
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: adler32.c,v 1.1.1.1 1996/09/12 15:33:09 gwr Exp $ */
|
||||
|
||||
#include "zlib.h"
|
||||
|
||||
#define BASE 65521L /* largest prime smaller than 65536 */
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
$NetBSD: algorithm.doc,v 1.2 1996/09/13 00:29:55 cgd Exp $
|
||||
|
||||
1. Compression algorithm (deflate)
|
||||
|
||||
The deflation algorithm used by zlib (also zip and gzip) is a variation of
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: compress.c,v 1.2 1996/09/13 00:29:56 cgd Exp $ */
|
||||
|
||||
/* compress.c -- compress a memory buffer
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: compress.c,v 1.1.1.1 1996/09/12 15:33:09 gwr Exp $ */
|
||||
|
||||
#include "zlib.h"
|
||||
|
||||
/* ===========================================================================
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: crc32.c,v 1.2 1996/09/13 00:29:57 cgd Exp $ */
|
||||
|
||||
/* crc32.c -- compute the CRC-32 of a data stream
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: crc32.c,v 1.1.1.1 1996/09/12 15:33:09 gwr Exp $ */
|
||||
|
||||
#include "zlib.h"
|
||||
|
||||
#define local static
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: deflate.c,v 1.2 1996/09/13 00:29:59 cgd Exp $ */
|
||||
|
||||
/* deflate.c -- compress data using the deflation algorithm
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
@ -47,8 +49,6 @@
|
|||
*
|
||||
*/
|
||||
|
||||
/* $Id: deflate.c,v 1.1.1.1 1996/09/12 15:33:09 gwr Exp $ */
|
||||
|
||||
#include "deflate.h"
|
||||
|
||||
char deflate_copyright[] = " deflate 1.0.4 Copyright 1995-1996 Jean-loup Gailly ";
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: deflate.h,v 1.2 1996/09/13 00:30:02 cgd Exp $ */
|
||||
|
||||
/* deflate.h -- internal compression state
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
@ -8,8 +10,6 @@
|
|||
subject to change. Applications should only use zlib.h.
|
||||
*/
|
||||
|
||||
/* $Id: deflate.h,v 1.1.1.1 1996/09/12 15:33:09 gwr Exp $ */
|
||||
|
||||
#ifndef _DEFLATE_H
|
||||
#define _DEFLATE_H
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: example.c,v 1.2 1996/09/13 00:30:04 cgd Exp $ */
|
||||
|
||||
/* example.c -- usage example of the zlib compression library
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: example.c,v 1.1.1.1 1996/09/12 15:33:09 gwr Exp $ */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "zlib.h"
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: gzio.c,v 1.4 1996/09/13 00:30:06 cgd Exp $ */
|
||||
|
||||
/* gzio.c -- IO on .gz files
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: gzio.c,v 1.3 1996/09/12 19:50:28 gwr Exp $ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "zutil.h"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: infblock.c,v 1.2 1996/09/13 00:30:08 cgd Exp $ */
|
||||
|
||||
/* infblock.c -- interpret and process block types to last block
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: infblock.h,v 1.2 1996/09/13 00:30:09 cgd Exp $ */
|
||||
|
||||
/* infblock.h -- header to use infblock.c
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: infcodes.c,v 1.2 1996/09/13 00:30:11 cgd Exp $ */
|
||||
|
||||
/* infcodes.c -- process literals and length/distance pairs
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: infcodes.h,v 1.2 1996/09/13 00:30:28 cgd Exp $ */
|
||||
|
||||
/* infcodes.h -- header to use infcodes.c
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: inffast.c,v 1.2 1996/09/13 00:30:30 cgd Exp $ */
|
||||
|
||||
/* inffast.c -- process literals and length/distance pairs fast
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: inffast.h,v 1.2 1996/09/13 00:30:32 cgd Exp $ */
|
||||
|
||||
/* inffast.h -- header to use inffast.c
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: inflate.c,v 1.2 1996/09/13 00:30:34 cgd Exp $ */
|
||||
|
||||
/* inflate.c -- zlib interface to inflate modules
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: inftrees.c,v 1.2 1996/09/13 00:30:36 cgd Exp $ */
|
||||
|
||||
/* inftrees.c -- generate Huffman trees for efficient decoding
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: inftrees.h,v 1.2 1996/09/13 00:30:37 cgd Exp $ */
|
||||
|
||||
/* inftrees.h -- header to use inftrees.c
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: infutil.c,v 1.2 1996/09/13 00:30:38 cgd Exp $ */
|
||||
|
||||
/* inflate_util.c -- data and routines common to blocks and codes
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: infutil.h,v 1.2 1996/09/13 00:30:40 cgd Exp $ */
|
||||
|
||||
/* infutil.h -- types and macros common to blocks and codes
|
||||
* Copyright (C) 1995-1996 Mark Adler
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: minigzip.c,v 1.3 1996/09/13 00:30:41 cgd Exp $ */
|
||||
|
||||
/* minigzip.c -- simulate gzip using the zlib compression library
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
@ -13,8 +15,6 @@
|
|||
* or in pipe mode.
|
||||
*/
|
||||
|
||||
/* $Id: minigzip.c,v 1.2 1996/09/12 19:26:44 gwr Exp $ */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: trees.c,v 1.2 1996/09/13 00:30:42 cgd Exp $ */
|
||||
|
||||
/* trees.c -- output deflated data using Huffman coding
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
@ -29,8 +31,6 @@
|
|||
* Addison-Wesley, 1983. ISBN 0-201-06672-6.
|
||||
*/
|
||||
|
||||
/* $Id: trees.c,v 1.1.1.1 1996/09/12 15:33:10 gwr Exp $ */
|
||||
|
||||
#include "deflate.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: uncompr.c,v 1.2 1996/09/13 00:30:45 cgd Exp $ */
|
||||
|
||||
/* uncompr.c -- decompress a memory buffer
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: uncompr.c,v 1.1.1.1 1996/09/12 15:33:10 gwr Exp $ */
|
||||
|
||||
#include "zlib.h"
|
||||
|
||||
/* ===========================================================================
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: zconf.h,v 1.3 1996/09/13 00:30:47 cgd Exp $ */
|
||||
|
||||
/* zconf.h -- configuration of the zlib compression library
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: zconf.h,v 1.2 1996/09/12 19:33:53 gwr Exp $ */
|
||||
|
||||
#ifndef _ZCONF_H
|
||||
#define _ZCONF_H
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: zlib.h,v 1.3 1996/09/13 00:30:48 cgd Exp $ */
|
||||
|
||||
/* zlib.h -- interface of the 'zlib' general purpose compression library
|
||||
version 1.0.4, Jul 24th, 1996.
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: zutil.c,v 1.2 1996/09/13 00:30:50 cgd Exp $ */
|
||||
|
||||
/* zutil.c -- target dependent utility functions for the compression library
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
/* $Id: zutil.c,v 1.1.1.1 1996/09/12 15:33:10 gwr Exp $ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "zutil.h"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: zutil.h,v 1.2 1996/09/13 00:30:51 cgd Exp $ */
|
||||
|
||||
/* zutil.h -- internal interface and configuration of the compression library
|
||||
* Copyright (C) 1995-1996 Jean-loup Gailly.
|
||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
|
@ -8,8 +10,6 @@
|
|||
subject to change. Applications should only use zlib.h.
|
||||
*/
|
||||
|
||||
/* $Id: zutil.h,v 1.1.1.1 1996/09/12 15:33:10 gwr Exp $ */
|
||||
|
||||
#ifndef _Z_UTIL_H
|
||||
#define _Z_UTIL_H
|
||||
|
||||
|
|
Loading…
Reference in New Issue