blob: a7879e9b5f2122ff155e22dce50a2fd82b42feba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef UTIL_H
#define UTIL_H
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
void die(const char* fmt, ...);
void log_err(const char* fmt, ...);
void log_inf(const char* fmt, ...);
void log_raw(const char* fmt, ...);
void log_war(const char* fmt, ...);
#endif
|