diff options
author | dzwdz | 2021-06-24 20:41:07 +0200 |
---|---|---|
committer | dzwdz | 2021-06-24 20:41:07 +0200 |
commit | fde20f86f5be5a39fd3eadf95ba71761d173e0ce (patch) | |
tree | 2fc4c65b6b610ee0aa3c82228bcf8255337b0fd6 /kernel/tty.h |
Hello world o/
Diffstat (limited to 'kernel/tty.h')
-rw-r--r-- | kernel/tty.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/tty.h b/kernel/tty.h new file mode 100644 index 0000000..87a4744 --- /dev/null +++ b/kernel/tty.h @@ -0,0 +1,6 @@ +#pragma once + +#include <stddef.h> + +void tty_putchar(char c); +void tty_write(const char *buf, size_t len); |