aboutsummaryrefslogtreecommitdiff
path: root/src/include/util.h
blob: 712af4339dceb46fb209092a81c56ada2eea4314 (plain) (blame)
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
#ifndef UTIL_H
#define UTIL_H

#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>


/* die and leave message */
void die(const char*, ...);
/* log an error */
void log_err(const char*, ...);
/* log some information */
void log_inf(const char*, ...);
/* log something with no formatting */
void log_raw(const char*, ...);
/* log a warning */
void log_war(const char*, ...);

/* if calloc() returns null, die */
void* ecalloc(size_t, size_t);
/* if malloc() returns null, die */
void* emalloc(size_t);
/* if realloc() returns null, die */
void* erealloc(void*, size_t);

#endif