Files

13 lines
237 B
C
Raw Permalink Normal View History

2026-07-14 17:40:30 -05:00
#ifndef D_CONSOLE_H
#define D_CONSOLE_H
#include <lib/font.h>
void console_putchar(char c);
2026-07-15 08:07:06 -05:00
int set_console_font(const char* path);
2026-07-14 17:40:30 -05:00
void set_console_fg(uint32_t color);
void set_console_bg(uint32_t color);
void console_init();
#endif