metal-cos/sys/dev/console.h

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__ */