From 485c33eb10b4d877632676ee1bd8d8bdef821cfe Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 17 Apr 2025 09:26:49 -0400 Subject: fmt --- kernel/include/comus/drivers/gpu/bochs.h | 3 ++- kernel/include/comus/term.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'kernel/include') diff --git a/kernel/include/comus/drivers/gpu/bochs.h b/kernel/include/comus/drivers/gpu/bochs.h index 5933a3a..31aa740 100644 --- a/kernel/include/comus/drivers/gpu/bochs.h +++ b/kernel/include/comus/drivers/gpu/bochs.h @@ -35,6 +35,7 @@ uint8_t bochs_bit_depth(void); /** * Sets the pixel at a given position */ -void bochs_set_pixel(uint32_t x, uint32_t y, uint32_t r, uint32_t g, uint32_t b); +void bochs_set_pixel(uint32_t x, uint32_t y, uint32_t r, uint32_t g, + uint32_t b); #endif /* bochs.h */ diff --git a/kernel/include/comus/term.h b/kernel/include/comus/term.h index 2d39915..6ac77e4 100644 --- a/kernel/include/comus/term.h +++ b/kernel/include/comus/term.h @@ -80,6 +80,7 @@ void term_scroll(uint16_t lines); /** * Switch terminal handler */ -void term_switch_handler(uint16_t width, uint16_t height, void (*draw_char)(char c, uint16_t x, uint16_t y)); +void term_switch_handler(uint16_t width, uint16_t height, + void (*draw_char)(char c, uint16_t x, uint16_t y)); #endif /* term.h */ -- cgit v1.2.3-freya