blob: 4bf730111151359960ec89e7ea1d99b70b59e3f2 (
plain)
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
|
#include "../include/helpers.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void die_lz(int code, const char *msg) {
if (code < 0) {
die(msg);
}
}
void die(const char *msg) {
fprintf(stderr, "panic: ");
perror(msg);
exit(EXIT_FAILURE);
}
void *safe_calloc(unsigned int i, size_t size) {
void *x = calloc(i, size);
if (x == NULL) {
die("abort: calloc()");
}
return x;
}
void *safe_realloc(void *x, size_t size) {
void *p = realloc(x, size);
if (x == NULL) {
die("abort: realloc()");
}
return p;
}
void alloc_zero(void *ptr, size_t size) { memset(ptr, 0, size); }
void nothing(void *_) {}
|