blob: a344c90815bae30d4b4b0b7b71d7b93a0a124ce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CONSOLE_H
#define CONSOLE_H
void console_init();
void console_put_char(char);
void console_put_char_red(char);
void console_put_str(char *);
void console_del_char();
#endif
|