1 2 3 4 5 6 7 8 9 10
#ifndef CONSOLE_H #define CONSOLE_H void console_init(); void console_put_char(char); void console_put_str(char *); #endif