11 lines
160 B
C
11 lines
160 B
C
|
|
#ifndef __CONSOLE_H__
|
|
#define __CONSOLE_H__
|
|
|
|
void Console_Init();
|
|
void Console_Putc(char ch);
|
|
void Console_Puts(const char *str);
|
|
|
|
#endif /* __CONSOLE_H__ */
|
|
|