aboutsummaryrefslogtreecommitdiff
path: root/src/include/util.h
blob: 500fb5f47fa175bfc04c5b64bdc5f93be067bc8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef UTIL_H
#define UTIL_H

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


void log_inf(const char* fmt, ...);
void log_war(const char* fmt, ...);
void log_err(const char* fmt, ...);
void die(const char* fmt, ...);

#endif