summaryrefslogtreecommitdiff
path: root/src/kernel/arch/i386/tty/vga.h
diff options
context:
space:
mode:
authordzwdz2021-08-09 21:11:16 +0200
committerdzwdz2021-08-09 21:11:16 +0200
commit5836c7df10d48b9c3241f2fbdb9ea3a37313a6fd (patch)
tree133af83b3c7b35d69f816de61de8e53aeeab15df /src/kernel/arch/i386/tty/vga.h
parentb0c9ffa82ea26fa68f9a5ece89198ccfcf392980 (diff)
move all the tty stuff to a tty directory
Diffstat (limited to 'src/kernel/arch/i386/tty/vga.h')
-rw-r--r--src/kernel/arch/i386/tty/vga.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/arch/i386/tty/vga.h b/src/kernel/arch/i386/tty/vga.h
new file mode 100644
index 0000000..cbb8efc
--- /dev/null
+++ b/src/kernel/arch/i386/tty/vga.h
@@ -0,0 +1,6 @@
+#pragma once
+#include <stddef.h>
+
+void tty_putchar(char c);
+void tty_write(const char *buf, size_t len);
+void tty_clear();