#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