summaryrefslogtreecommitdiff
path: root/kernel/tty.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/tty.h')
-rw-r--r--kernel/tty.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/tty.h b/kernel/tty.h
index 435c87f..3dc1525 100644
--- a/kernel/tty.h
+++ b/kernel/tty.h
@@ -1,7 +1,8 @@
#pragma once
-
#include <stddef.h>
void tty_putchar(char c);
void tty_write(const char *buf, size_t len);
void tty_clear();
+
+#define tty_const(str) tty_write(str, sizeof(str) - 1)