blob: 609aac55ce11f015d79f805b29f3c7eec8d014cf [file] [log] [blame]
Mike Frysingere89516f2011-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"
Simon Glassdb41d652019-12-28 10:45:07 -07009#include <hang.h>
Mike Frysingere89516f2011-04-08 12:23:30 +000010
11#ifndef NO_DUMMY_DECL
12struct internal_state {int dummy;}; /* for buggy compilers */
13#endif
14
15const char * const z_errmsg[10] = {
16"need dictionary", /* Z_NEED_DICT 2 */
17"stream end", /* Z_STREAM_END 1 */
18"", /* Z_OK 0 */
19"file error", /* Z_ERRNO (-1) */
20"stream error", /* Z_STREAM_ERROR (-2) */
21"data error", /* Z_DATA_ERROR (-3) */
22"insufficient memory", /* Z_MEM_ERROR (-4) */
23"buffer error", /* Z_BUF_ERROR (-5) */
24"incompatible version",/* Z_VERSION_ERROR (-6) */
25""};
26
27#ifdef DEBUG
28
29#ifndef verbose
30#define verbose 0
31#endif
32int z_verbose = verbose;
33
34void z_error (m)
35 char *m;
36{
37 fprintf(stderr, "%s\n", m);
Simon Glassdb41d652019-12-28 10:45:07 -070038 hang();
Mike Frysingere89516f2011-04-08 12:23:30 +000039}
40#endif
41
42/* exported to allow conversion of error code to string for compress() and
43 * uncompress()
44 */
45#ifndef MY_ZCALLOC /* Any system without a special alloc function */
46
Simon Glass6e295182015-09-02 17:24:57 -060047#ifdef __UBOOT__
48#include <malloc.h>
49#else
Mike Frysingere89516f2011-04-08 12:23:30 +000050#ifndef STDC
51extern voidp malloc OF((uInt size));
52extern voidp calloc OF((uInt items, uInt size));
53extern void free OF((voidpf ptr));
54#endif
Marcel Ziswiler45196682015-08-18 13:06:37 +020055#endif
Mike Frysingere89516f2011-04-08 12:23:30 +000056
Kim Phillipsee820b52012-10-29 13:34:35 +000057voidpf zcalloc(voidpf opaque, unsigned items, unsigned size)
Mike Frysingere89516f2011-04-08 12:23:30 +000058{
59 if (opaque)
60 items += size - size; /* make compiler happy */
61 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
62 (voidpf)calloc(items, size);
63}
64
Kim Phillipsee820b52012-10-29 13:34:35 +000065void zcfree(voidpf opaque, voidpf ptr, unsigned nb)
Mike Frysingere89516f2011-04-08 12:23:30 +000066{
67 free(ptr);
68 if (opaque)
69 return; /* make compiler happy */
70}
71
72#endif /* MY_ZCALLOC */