[BACK]Return to infcodes.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libz

File: [cvs.NetBSD.org] / src / lib / libz / Attic / infcodes.h (download)

Revision 1.5.8.1, Wed Mar 20 23:18:07 2002 UTC (22 years, 1 month ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003
Changes since 1.5: +2 -2 lines

Pull up revision 1.7 (requested by fvdl):
  Upgrade libz to 1.1.4 due to a possible security bug.

/* $NetBSD: infcodes.h,v 1.5.8.1 2002/03/20 23:18:07 he Exp $ */

/* infcodes.h -- header to use infcodes.c
 * Copyright (C) 1995-2002 Mark Adler
 * For conditions of distribution and use, see copyright notice in zlib.h 
 */

/* WARNING: this file should *not* be used by applications. It is
   part of the implementation of the compression library and is
   subject to change. Applications should only use zlib.h.
 */

struct inflate_codes_state;
typedef struct inflate_codes_state FAR inflate_codes_statef;

extern inflate_codes_statef *inflate_codes_new OF((
    uInt, uInt,
    inflate_huft *, inflate_huft *,
    z_streamp ));

extern int inflate_codes OF((
    inflate_blocks_statef *,
    z_streamp ,
    int));

extern void inflate_codes_free OF((
    inflate_codes_statef *,
    z_streamp ));