aboutsummaryrefslogtreecommitdiff
path: root/src/include/log.h
blob: 1ad592bd68a0c1fb0b4162fd6531fd98f52a7be3 (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
#ifndef LOG_H
#define LOG_H


#include <stdio.h>


#define KNRM  "\x1B[0m"
#define KRED  "\x1B[31m"
#define KGRN  "\x1B[32m"
#define KYEL  "\x1B[33m"
#define KBLU  "\x1B[34m"
#define KMAG  "\x1B[35m"
#define KCYN  "\x1B[36m"
#define KWHT  "\x1B[37m"


void log_dbg(char* content);
void log_inf(char* content);
void log_war(char* content);
void log_err(char* content);


#endif