metal-cos/sys/dev/console.h

13 lines
221 B
C
Raw Normal View History

2014-02-12 21:47:13 +00:00
#ifndef __CONSOLE_H__
#define __CONSOLE_H__
void Console_Init();
2014-07-13 20:36:43 +00:00
char Console_Getc();
void Console_Gets(char *str, size_t n);
void Console_Putc(char ch);
void Console_Puts(const char *str);
2014-02-12 21:47:13 +00:00
#endif /* __CONSOLE_H__ */