From d026c19b1622b38fa92f3d7fba2eca42f6575efa Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 5 Jun 2025 22:59:22 -0400 Subject: kernel: cons: Add color attribute helpers Signed-off-by: Ian Moffett --- sys/include/dev/cons/cons.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/include/dev/cons/cons.h') diff --git a/sys/include/dev/cons/cons.h b/sys/include/dev/cons/cons.h index b27be23..fb254cb 100644 --- a/sys/include/dev/cons/cons.h +++ b/sys/include/dev/cons/cons.h @@ -64,6 +64,8 @@ struct cons_screen { void cons_init(void); void cons_expose(void); +void cons_update_color(struct cons_screen *scr, uint32_t fg, uint32_t bg); +void cons_reset_color(struct cons_screen *scr); int cons_putch(struct cons_screen *scr, char c); int cons_putstr(struct cons_screen *scr, const char *s, size_t len); -- cgit v1.2.3