1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
* Copyright (C) 2006 Michael Buesch <mb@bu3sch.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "util.h"
#include <stdio.h>
#include <string.h>
void dump(const char *data,
size_t size,
const char *description)
{
size_t i;
char c;
fprintf(stderr, "Data dump (%s, %zd bytes):",
description, size);
for (i = 0; i < size; i++) {
c = data[i];
if (i % 8 == 0) {
fprintf(stderr, "\n0x%08zx: 0x%02x, ",
i, c & 0xff);
} else
fprintf(stderr, "0x%02x, ", c & 0xff);
}
fprintf(stderr, "\n");
}
void * xmalloc(size_t size)
{
void *p;
p = malloc(size);
if (!p) {
fprintf(stderr, "Out of memory\n");
exit(1);
}
memset(p, 0, size);
return p;
}
char * xstrdup(const char *str)
{
char *c;
c = strdup(str);
if (!c) {
fprintf(stderr, "Out of memory\n");
exit(1);
}
return c;
}
void * xrealloc(void *in, size_t size)
{
void *out;
out = realloc(in, size);
if (!out) {
fprintf(stderr, "Out of memory\n");
exit(1);
}
return out;
}
|