13 lines
276 B
C
13 lines
276 B
C
#ifndef CONSOLE_H
|
|
#define CONSOLE_H
|
|
|
|
#include "shitgui.h"
|
|
|
|
void console_init(SG_Context *ctx);
|
|
void console_clear(u32 color);
|
|
void console_set_color(u32 color);
|
|
void console_set_cursor_pos(SG_Point *p);
|
|
void kprint(const char *str);
|
|
void kprintf(const char *fmt, ...);
|
|
|
|
#endif |