]> git.lizzy.rs Git - zlib.git/blob - zutil.h
zlib 1.2.0.2
[zlib.git] / zutil.h
1 /* zutil.h -- internal interface and configuration of the compression library
2  * Copyright (C) 1995-2003 Jean-loup Gailly.
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
11 /* @(#) $Id$ */
12
13 #ifndef ZUTIL_H
14 #define ZUTIL_H
15
16 #define ZLIB_INTERNAL
17 #include "zlib.h"
18
19 #ifdef STDC
20 #  include <stddef.h>
21 #  include <string.h>
22 #  include <stdlib.h>
23 #endif
24 #ifdef NO_ERRNO_H
25     extern int errno;
26 #else
27 #   include <errno.h>
28 #endif
29
30 #ifndef local
31 #  define local static
32 #endif
33 /* compile with -Dlocal if your debugger can't find static symbols */
34
35 typedef unsigned char  uch;
36 typedef uch FAR uchf;
37 typedef unsigned short ush;
38 typedef ush FAR ushf;
39 typedef unsigned long  ulg;
40
41 extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
42 /* (size given to avoid silly warnings with Visual C++) */
43
44 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
45
46 #define ERR_RETURN(strm,err) \
47   return (strm->msg = (char*)ERR_MSG(err), (err))
48 /* To be used only when the state is known to be valid */
49
50         /* common constants */
51
52 #ifndef DEF_WBITS
53 #  define DEF_WBITS MAX_WBITS
54 #endif
55 /* default windowBits for decompression. MAX_WBITS is for compression only */
56
57 #if MAX_MEM_LEVEL >= 8
58 #  define DEF_MEM_LEVEL 8
59 #else
60 #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
61 #endif
62 /* default memLevel */
63
64 #define STORED_BLOCK 0
65 #define STATIC_TREES 1
66 #define DYN_TREES    2
67 /* The three kinds of block type */
68
69 #define MIN_MATCH  3
70 #define MAX_MATCH  258
71 /* The minimum and maximum match lengths */
72
73 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
74
75         /* target dependencies */
76
77 #ifdef MSDOS
78 #  define OS_CODE  0x00
79 #  if defined(__TURBOC__) || defined(__BORLANDC__)
80 #    if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
81        /* Allow compilation with ANSI keywords only enabled */
82        void _Cdecl farfree( void *block );
83        void *_Cdecl farmalloc( unsigned long nbytes );
84 #    else
85 #     include <alloc.h>
86 #    endif
87 #  else /* MSC or DJGPP */
88 #    include <malloc.h>
89 #  endif
90 #endif
91
92 #ifdef OS2
93 #  define OS_CODE  0x06
94 #endif
95
96 #ifdef WIN32 /* Window 95 & Windows NT */
97 #  define OS_CODE  0x0b
98 #endif
99
100 #if defined(VAXC) || defined(VMS)
101 #  define OS_CODE  0x02
102 #  define F_OPEN(name, mode) \
103      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
104 #endif
105
106 #ifdef AMIGA
107 #  define OS_CODE  0x01
108 #endif
109
110 #if defined(ATARI) || defined(atarist)
111 #  define OS_CODE  0x05
112 #endif
113
114 #if defined(MACOS) || defined(TARGET_OS_MAC)
115 #  define OS_CODE  0x07
116 #  if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
117 #    include <unix.h> /* for fdopen */
118 #  else
119 #    ifndef fdopen
120 #      define fdopen(fd,mode) NULL /* No fdopen() */
121 #    endif
122 #  endif
123 #endif
124
125 #ifdef __50SERIES /* Prime/PRIMOS */
126 #  define OS_CODE  0x0F
127 #endif
128
129 #ifdef TOPS20
130 #  define OS_CODE  0x0a
131 #endif
132
133 #if defined(_BEOS_) || defined(RISCOS)
134 #  define fdopen(fd,mode) NULL /* No fdopen() */
135 #endif
136
137 #if (defined(_MSC_VER) && (_MSC_VER > 600))
138 #  if defined(_WIN32_WCE)
139 #    define fdopen(fd,mode) NULL /* No fdopen() */
140 #  else
141 #    define fdopen(fd,type)  _fdopen(fd,type)
142 #  endif
143 #endif
144
145
146         /* Common defaults */
147
148 #ifndef OS_CODE
149 #  define OS_CODE  0x03  /* assume Unix */
150 #endif
151
152 #ifndef F_OPEN
153 #  define F_OPEN(name, mode) fopen((name), (mode))
154 #endif
155
156          /* functions */
157
158 #ifdef __STDC_VERSION__
159 #  if __STDC_VERSION__ >= 199901L
160 #    ifndef STDC99
161 #      define STDC99
162 #    endif
163 #  endif
164 #endif
165 #if !defined(STDC99) && !(defined(__TURBOC__) && __TURBOC__ >= 0x550) && !defined(HAVE_VSNPRINTF)
166 #  ifdef MSDOS
167      /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
168         but for now we just assume it doesn't. */
169 #    define NO_vsnprintf
170 #  endif
171 #  ifdef WIN32
172      /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
173 #    if !defined(vsnprintf) && !defined(__TURBOC__)
174 #      define vsnprintf _vsnprintf
175 #    endif
176 #  endif
177 #  ifdef __TURBOC__
178 #    define NO_vsnprintf
179 #  endif
180 #endif
181
182 #ifdef HAVE_STRERROR
183    extern char *strerror OF((int));
184 #  define zstrerror(errnum) strerror(errnum)
185 #else
186 #  define zstrerror(errnum) ""
187 #endif
188
189 #if defined(pyr)
190 #  define NO_MEMCPY
191 #endif
192 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
193  /* Use our own functions for small and medium model with MSC <= 5.0.
194   * You may have to use the same strategy for Borland C (untested).
195   * The __SC__ check is for Symantec.
196   */
197 #  define NO_MEMCPY
198 #endif
199 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
200 #  define HAVE_MEMCPY
201 #endif
202 #ifdef HAVE_MEMCPY
203 #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
204 #    define zmemcpy _fmemcpy
205 #    define zmemcmp _fmemcmp
206 #    define zmemzero(dest, len) _fmemset(dest, 0, len)
207 #  else
208 #    define zmemcpy memcpy
209 #    define zmemcmp memcmp
210 #    define zmemzero(dest, len) memset(dest, 0, len)
211 #  endif
212 #else
213    extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
214    extern int  zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
215    extern void zmemzero OF((Bytef* dest, uInt len));
216 #endif
217
218 /* Diagnostic functions */
219 #ifdef DEBUG
220 #  include <stdio.h>
221    extern int z_verbose;
222    extern void z_error    OF((char *m));
223 #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
224 #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
225 #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
226 #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
227 #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
228 #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
229 #else
230 #  define Assert(cond,msg)
231 #  define Trace(x)
232 #  define Tracev(x)
233 #  define Tracevv(x)
234 #  define Tracec(c,x)
235 #  define Tracecv(c,x)
236 #endif
237
238
239 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
240 void   zcfree  OF((voidpf opaque, voidpf ptr));
241
242 #define ZALLOC(strm, items, size) \
243            (*((strm)->zalloc))((strm)->opaque, (items), (size))
244 #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
245 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
246
247 #endif /* ZUTIL_H */