summaryrefslogtreecommitdiff
path: root/src/draw.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-06-30 10:57:04 -0700
committerLouie S <louie@example.com>2023-06-30 10:57:04 -0700
commit33e27b2c2796aa98fb7e48079187b01a2e59d72a (patch)
treed93fec7bc0e0c84716792217de456137901205f9 /src/draw.h
parent4333cd2b11cc32fe75fa1ef31627c667bcc71327 (diff)
draw skeleton
Diffstat (limited to 'src/draw.h')
-rw-r--r--src/draw.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/draw.h b/src/draw.h
new file mode 100644
index 0000000..8a39605
--- /dev/null
+++ b/src/draw.h
@@ -0,0 +1,10 @@
+#ifndef DRAW_H
+#define DRAW_H
+
+// initialize the tui
+void tui_init();
+
+// destroy the tui
+void tui_end();
+
+#endif