aboutsummaryrefslogtreecommitdiff
path: root/std/stdio.c
diff options
context:
space:
mode:
Diffstat (limited to 'std/stdio.c')
-rw-r--r--std/stdio.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/std/stdio.c b/std/stdio.c
index d3ff5a0..f6dbeaf 100644
--- a/std/stdio.c
+++ b/std/stdio.c
@@ -18,3 +18,11 @@ void termpos(int x, int y) {
void termclear() {
printf("\x1b[2J\x1b[H");
}
+
+void curshide() {
+ print("\x1b[?25l");
+}
+
+void cursshow() {
+ print("\x1b[?25h");
+}