Deleted Added
full compact
inflate.h (3784) inflate.h (7840)
1/*
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
1/*
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
9 * $Id$
9 * $Id: inflate.h,v 1.4 1994/10/22 11:40:38 phk Exp $
10 *
11 */
12#ifndef _SYS_INFLATE_H_
13#define _SYS_INFLATE_H_
14
10 *
11 */
12#ifndef _SYS_INFLATE_H_
13#define _SYS_INFLATE_H_
14
15#ifdef KERNEL
15#if defined(KERNEL) || defined(KZIP)
16
17#define GZ_EOF -1
18
19#define GZ_WSIZE 0x8000
20
21/*
22 * Global variables used by inflate and friends.
23 * This structure is used in order to make inflate() reentrant.

--- 19 unchanged lines hidden (view full) ---

43 int gz_fixed_bl;
44 int gz_fixed_bd;
45 u_char *gz_slide;
46 unsigned gz_wp;
47};
48
49int inflate __P((struct inflate *));
50
16
17#define GZ_EOF -1
18
19#define GZ_WSIZE 0x8000
20
21/*
22 * Global variables used by inflate and friends.
23 * This structure is used in order to make inflate() reentrant.

--- 19 unchanged lines hidden (view full) ---

43 int gz_fixed_bl;
44 int gz_fixed_bd;
45 u_char *gz_slide;
46 unsigned gz_wp;
47};
48
49int inflate __P((struct inflate *));
50
51#endif /* KERNEL */
51#endif /* KERNEL || KZIP */
52
53#endif /* ! _SYS_INFLATE_H_ */
52
53#endif /* ! _SYS_INFLATE_H_ */