aboutsummaryrefslogtreecommitdiff
path: root/src/i_util.h
diff options
context:
space:
mode:
authorame <[email protected]>2023-10-18 16:30:38 -0500
committerame <[email protected]>2023-10-18 16:30:38 -0500
commit4c00c7fb9a648e336973de6d4d40f535dab1410c (patch)
tree6a551b9b4633f2570159eeb83a8f8ac9e1019100 /src/i_util.h
parentfeb025300ce464322f5e5400fb9b2b8a4e8a2a8a (diff)
md5 and sorting improvments
Diffstat (limited to 'src/i_util.h')
-rw-r--r--src/i_util.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/i_util.h b/src/i_util.h
new file mode 100644
index 0000000..b4b609a
--- /dev/null
+++ b/src/i_util.h
@@ -0,0 +1,20 @@
+#define color_black "\e[30m"
+#define color_red "\e[31m"
+#define color_green "\e[32m"
+#define color_yellow "\e[33m"
+#define color_blue "\e[34m"
+#define color_magenta "\e[35m"
+#define color_cyan "\e[36m"
+#define color_lgray "\e[37m"
+#define color_gray "\e[90m"
+#define color_lred "\e[91m"
+#define color_lgreen "\e[92m"
+#define color_lyellow "\e[93m"
+#define color_lblue "\e[94m"
+#define color_lmagenta "\e[95m"
+#define color_lcyan "\e[96m"
+#define color_white "\e[97m"
+#define color_reset "\e[0m"
+
+void p_fatal(const char*);
+void p_error(const char*);