The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/lib/libz/infblock.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $NetBSD: infblock.h,v 1.5 2003/03/25 22:48:44 mycroft Exp $ */
    2 
    3 /* infblock.h -- header to use infblock.c
    4  * Copyright (C) 1995-2002 Mark Adler
    5  * For conditions of distribution and use, see copyright notice in zlib.h 
    6  */
    7 
    8 /* WARNING: this file should *not* be used by applications. It is
    9    part of the implementation of the compression library and is
   10    subject to change. Applications should only use zlib.h.
   11  */
   12 
   13 struct inflate_blocks_state;
   14 typedef struct inflate_blocks_state FAR inflate_blocks_statef;
   15 
   16 extern inflate_blocks_statef * inflate_blocks_new __P((
   17     z_streamp z,
   18     check_func c,               /* check function */
   19     uInt w));                   /* window size */
   20 
   21 extern int inflate_blocks __P((
   22     inflate_blocks_statef *,
   23     z_streamp ,
   24     int));                      /* initial return code */
   25 
   26 extern void inflate_blocks_reset __P((
   27     inflate_blocks_statef *,
   28     z_streamp ,
   29     uLongf *));                  /* check value on output */
   30 
   31 extern int inflate_blocks_free __P((
   32     inflate_blocks_statef *,
   33     z_streamp));

Cache object: 06805b62a7bce94712108cb7839695ef


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.