Deleted Added
full compact
inftrees.h (205471) inftrees.h (206924)
1/* inftrees.h -- header to use inftrees.c
1/* inftrees.h -- header to use inftrees.c
2 * Copyright (C) 1995-2005 Mark Adler
2 * Copyright (C) 1995-2005, 2010 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* WARNING: this file should *not* be used by applications. It is
7 part of the implementation of the compression library and is
8 subject to change. Applications should only use zlib.h.
9 */
10

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

52
53/* Type of code to build for inflate_table() */
54typedef enum {
55 CODES,
56 LENS,
57 DISTS
58} codetype;
59
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* WARNING: this file should *not* be used by applications. It is
7 part of the implementation of the compression library and is
8 subject to change. Applications should only use zlib.h.
9 */
10

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

52
53/* Type of code to build for inflate_table() */
54typedef enum {
55 CODES,
56 LENS,
57 DISTS
58} codetype;
59
60extern int inflate_table OF((codetype type, unsigned short FAR *lens,
60int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
61 unsigned codes, code FAR * FAR *table,
62 unsigned FAR *bits, unsigned short FAR *work));
61 unsigned codes, code FAR * FAR *table,
62 unsigned FAR *bits, unsigned short FAR *work));