summaryrefslogtreecommitdiff
path: root/util/colored_text.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-08-18 09:05:28 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-08-18 09:05:28 -0400
commitbe1f2bc848e9c4386437fe4a6147a0a8d7f000ff (patch)
tree0e104447439e9ecd85d0b1921006101ce82291a8 /util/colored_text.c
parent895be6655cb86e06811e92247b34d2262b13caa0 (diff)
Added string constants and improved tokenization
Diffstat (limited to 'util/colored_text.c')
-rw-r--r--util/colored_text.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/util/colored_text.c b/util/colored_text.c
deleted file mode 100644
index 836f357..0000000
--- a/util/colored_text.c
+++ /dev/null
@@ -1,10 +0,0 @@
-
-#define USE_COLORED_TEXT 1
-
-#if USE_COLORED_TEXT
-#define TEXT_ERROR(x) "\x1b[91m" x "\x1b[0m"
-#define TEXT_IMPORTANT(x) "\x1b[1m" x "\x1b[0m"
-#else
-#define TEXT_ERROR(x) x
-#define TEXT_IMPORTANT(x) x
-#endif