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