summaryrefslogtreecommitdiffstats
path: root/source/term.h
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <bigfoot@figboot.dev>2026-06-29 03:00:12 -0500
committerLibravatar bigfoot547 <bigfoot@figboot.dev>2026-06-29 03:00:12 -0500
commit6bb84fe005fc151df1a67259242da9c0eaf3fe93 (patch)
tree683d6e160bf48fd0c235635be874a8fef697402c /source/term.h
parentadd new tests (diff)
begin work on pc side
Diffstat (limited to 'source/term.h')
-rw-r--r--source/term.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/term.h b/source/term.h
deleted file mode 100644
index cc65615..0000000
--- a/source/term.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef EXITEST_TERM_H_INCLUDED
-#define EXITEST_TERM_H_INCLUDED
-
-#include "macros.h"
-
-#define TERM_ESC "\x1b"
-#define TERM_CSI(_s) TERM_ESC "[" _s
-#define TERM_CLEAR TERM_CSI("2J")
-#define TERM_CLEARLINE TERM_CSI("2K")
-#define TERM_CUR_POS(_row, _col) TERM_CSI(STR(_row) ";" STR(_col) "f")
-#define TERM_CUR_UP(_rows) TERM_CSI(STR(_rows) "A")
-
-#endif /* include guard */