aboutsummaryrefslogtreecommitdiff
path: root/lib/base.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base.h')
-rw-r--r--lib/base.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/base.h b/lib/base.h
index 172abff..537792f 100644
--- a/lib/base.h
+++ b/lib/base.h
@@ -18,6 +18,10 @@
#define ARR_SIZE(xs) (sizeof(xs) / sizeof(xs[0]))
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) > (b) ? (b) : (a))
+#define TERM_GREEN "\e[0;32m"
+#define TERM_YELLOW "\e[0;33m"
+#define TERM_RED "\e[0;31m"
+#define TERM_RESET "\e[0;0m"
// Flags
#ifndef VERBOSE