aboutsummaryrefslogtreecommitdiff
path: root/src/include/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/log.h')
-rw-r--r--src/include/log.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/include/log.h b/src/include/log.h
deleted file mode 100644
index 1ad592b..0000000
--- a/src/include/log.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#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