blob: 173a81d1ea4df76325f2f45cbe82aa8e3e10641c [file] [log] [blame]
Mike Frysinger99596bd2011-04-08 12:23:30 +00001/* zutil.c -- target dependent utility functions for the compression library
2 * Copyright (C) 1995-2005 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* @(#) $Id$ */
7
8#include "zutil.h"
9
10#ifndef NO_DUMMY_DECL
11struct internal_state {int dummy;}; /* for buggy compilers */
12#endif
13
14const char * const z_errmsg[10] = {
15"need dictionary", /* Z_NEED_DICT 2 */
16"stream end", /* Z_STREAM_END 1 */
17"", /* Z_OK 0 */
18"file error", /* Z_ERRNO (-1) */
19"stream error", /* Z_STREAM_ERROR (-2) */
20"data error", /* Z_DATA_ERROR (-3) */
21"insufficient memory", /* Z_MEM_ERROR (-4) */
22"buffer error", /* Z_BUF_ERROR (-5) */
23"incompatible version",/* Z_VERSION_ERROR (-6) */
24""};
25
26#ifdef DEBUG
27
28#ifndef verbose
29#define verbose 0
30#endif
31int z_verbose = verbose;
32
33void z_error (m)
34 char *m;
35{
36 fprintf(stderr, "%s\n", m);
37 hang ();
38}
39#endif
40
41/* exported to allow conversion of error code to string for compress() and
42 * uncompress()
43 */
44#ifndef MY_ZCALLOC /* Any system without a special alloc function */
45
Marcel Ziswilerabc574b2015-08-18 13:06:37 +020046#ifndef __UBOOT__
Mike Frysinger99596bd2011-04-08 12:23:30 +000047#ifndef STDC
48extern voidp malloc OF((uInt size));
49extern voidp calloc OF((uInt items, uInt size));
50extern void free OF((voidpf ptr));
51#endif
Marcel Ziswilerabc574b2015-08-18 13:06:37 +020052#endif
Mike Frysinger99596bd2011-04-08 12:23:30 +000053
Kim Phillips8eb69942012-10-29 13:34:35 +000054voidpf zcalloc(voidpf opaque, unsigned items, unsigned size)
Mike Frysinger99596bd2011-04-08 12:23:30 +000055{
56 if (opaque)
57 items += size - size; /* make compiler happy */
58 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
59 (voidpf)calloc(items, size);
60}
61
Kim Phillips8eb69942012-10-29 13:34:35 +000062void zcfree(voidpf opaque, voidpf ptr, unsigned nb)
Mike Frysinger99596bd2011-04-08 12:23:30 +000063{
64 free(ptr);
65 if (opaque)
66 return; /* make compiler happy */
67}
68
69#endif /* MY_ZCALLOC */