X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=visor;a=blobdiff_plain;f=visor%2Fsrc%2Fterm.c;h=af7d278414b8e6290cdac073f4eb82590d69cd95;hp=ee93e031f5733ede6287e509a31b548305a2010a;hb=1c7c43c39b2b6f9224bcd39e3a24b8e91ada2cae;hpb=519bb5db64dd400724d8beedd10bf54d8cf2b7af diff --git a/visor/src/term.c b/visor/src/term.c index ee93e03..af7d278 100644 --- a/visor/src/term.c +++ b/visor/src/term.c @@ -91,6 +91,11 @@ void term_send(const char *s, int size) } } +void term_putchar(char c) +{ + term_send(&c, 1); +} + void term_puts(const char *s) { term_send(s, strlen(s)); @@ -141,6 +146,16 @@ void term_clear(void) term_puts("\033[2J"); } +void term_cursor(int show) +{ + term_printf("\033[?25%c", show ? 'h' : 'l'); +} + +void term_setcursor(int row, int col) +{ + term_printf("\033[%d;%dH", row + 1, col + 1); +} + int term_getchar(void) { int res;