metal-cos/sys/dev/console.h
2014-07-13 13:36:43 -07:00

13 lines
221 B
C

#ifndef __CONSOLE_H__
#define __CONSOLE_H__
void Console_Init();
char Console_Getc();
void Console_Gets(char *str, size_t n);
void Console_Putc(char ch);
void Console_Puts(const char *str);
#endif /* __CONSOLE_H__ */