blob: 63ee8bbe5b9e0923538b98f5a36ce6c166b146d5 (
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 die(const char* fmt, ...);
void log_inf(const char* fmt, ...);
void log_raw(const char* fmt, ...);
void log_war(const char* fmt, ...);
#endif
|