mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
13 lines
273 B
C
13 lines
273 B
C
#ifndef KCONSOLE_H
|
|
#define KCONSOLE_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
void kconsole_init(void);
|
|
void kconsole_set_color(uint32_t color);
|
|
void kconsole_putc(char c);
|
|
void kconsole_write(const char *s);
|
|
void kconsole_set_active(bool active);
|
|
|
|
#endif // KCONSOLE_H
|