blob: 8d19f7763189bad99bd163191cd559713b292e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef CONSOLE_H
#define CONSOLE_H
void console_init();
void console_put_char_white(char);
void console_put_char_red(char);
void console_put_char_green(char);
void console_put_char_gray(char);
void console_put_str_white(char *);
void console_put_str_red(char *);
void console_put_str_green(char *);
void console_put_str_gray(char *);
void console_del_char();
#endif
|