aboutsummaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-05-18 20:31:37 -0400
committerIan Moffett <ian@osmora.org>2024-05-18 20:31:37 -0400
commit9820e8d18a2b459e95faf004573ada9fa8f16627 (patch)
tree4e30e3fd6ea851b1f5089741ff8f5747e06a42fa /sys/include
parent68bc6fb38fe2f308746d74de1973c7aa84fed440 (diff)
kernel: tty: Add tty_putstr()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/tty.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/tty.h b/sys/include/sys/tty.h
index 4a2c9ec..c53ea73 100644
--- a/sys/include/sys/tty.h
+++ b/sys/include/sys/tty.h
@@ -57,6 +57,7 @@ extern struct tty g_root_tty;
dev_t tty_attach(struct tty *tty);
int tty_putc(struct tty *tty, int c);
+int tty_putstr(struct tty *tty, const char *s, size_t count);
ssize_t tty_flush(struct tty *tty);
#endif /* !_SYS_TTY_H_ */