summaryrefslogtreecommitdiff
path: root/src/drivers/video/vga.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/video/vga.h')
-rw-r--r--src/drivers/video/vga.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/video/vga.h b/src/drivers/video/vga.h
index 69b4591..8b7ebdc 100644
--- a/src/drivers/video/vga.h
+++ b/src/drivers/video/vga.h
@@ -63,5 +63,6 @@ vga_color_t vga_make_RGB( int R, int G, int B );
void vga_set_pixel( vga_t *vga, const int x, const int y, const vga_color_t color );
void vga_draw_rectangle( vga_t *vga, const int x, const int y, const int w, const int h, const vga_color_t color );
void vga_clear_screen( vga_t *vga, const vga_color_t color );
+void vga_draw_char( vga_t *vga, const unsigned char c, const int x, const int y, const vga_color_t background, const vga_color_t foreground );
#endif // VGA_H