aboutsummaryrefslogtreecommitdiff
path: root/sys/include/dev
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-19 21:31:38 -0400
committerIan Moffett <ian@osmora.org>2024-03-19 21:31:38 -0400
commitd1bafb75630db5cc07825e53f28a241c2005b43b (patch)
tree41c8d691434d28cd3672a403169c1adf1e64fc8b /sys/include/dev
parentf985907ae497b836b53d932232e3cf6daac9c678 (diff)
kernel: vcons: Add vcons_putstr() routine
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/dev')
-rw-r--r--sys/include/dev/vcons/vcons.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/dev/vcons/vcons.h b/sys/include/dev/vcons/vcons.h
index 737651f..9deb656 100644
--- a/sys/include/dev/vcons/vcons.h
+++ b/sys/include/dev/vcons/vcons.h
@@ -67,6 +67,7 @@ struct vcons_screen {
void vcons_attach(struct vcons_screen *scr);
int vcons_putch(struct vcons_screen *scr, char c);
+int vcons_putstr(struct vcons_screen *scr, const char *s);
void vcons_update_cursor(struct vcons_screen *scr);
#endif /* !_DEV_VCONS_H_ */