/* * @author xamidev * @brief Framebuffer-based terminal driver * @license GPL-3.0-only */ #ifndef TERM_H #define TERM_H void kputs(const char* str); void _putchar(char character); void term_init(void); int printf(const char* fmt, ...); #endif