summaryrefslogtreecommitdiff
path: root/src/libs/tty.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/tty.h')
-rw-r--r--src/libs/tty.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libs/tty.h b/src/libs/tty.h
new file mode 100644
index 0000000..64970b9
--- /dev/null
+++ b/src/libs/tty.h
@@ -0,0 +1,9 @@
+#ifndef __TTY_H__
+#define __TTY_H__
+
+void tty_init(void);
+char tty_getchar(void);
+void tty_putchar(char c);
+void tty_putstr(char *str);
+
+#endif