maint: remove all uses of OF((...)) prototype-hiding macro
[gzip.git] / lzw.h
blob7f7813419632e4a4ec2d82ab2eea9b92d0041d5a
1 /* lzw.h -- define the lzw functions.
3 Copyright (C) 1992-1993 Jean-loup Gailly.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 #ifndef BITS
20 # define BITS 16
21 #endif
22 #define INIT_BITS 9 /* Initial number of bits per code */
24 #define LZW_MAGIC "\037\235" /* Magic header for lzw files, 1F 9D */
26 #define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
27 /* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
28 * It's a pity that old uncompress does not check bit 0x20. That makes
29 * extension of the format actually undesirable because old compress
30 * would just crash on the new format instead of giving a meaningful
31 * error message. It does check the number of bits, but it's more
32 * helpful to say "unsupported format, get a new version" than
33 * "can only handle 16 bits".
36 #define BLOCK_MODE 0x80
37 /* Block compression: if table is full and compression rate is dropping,
38 * clear the dictionary.
41 #define LZW_RESERVED 0x60 /* reserved bits */
43 #define CLEAR 256 /* flush the dictionary */
44 #define FIRST (CLEAR+1) /* first free entry */
46 extern int maxbits; /* max bits per code for LZW */
47 extern int block_mode; /* block compress mode -C compatible with 2.0 */
49 extern int lzw (int in, int out);
50 extern int unlzw (int in, int out);