Files
Upsilon/ion/include/ion/console.h
Romain Goyet c7b4890708 [ion] Console can now read and write lines and chars
Change-Id: Ifca7bb4effc00b8bbcd76e0725d0740436ce37c9
2017-03-17 15:41:46 +01:00

18 lines
252 B
C++

#ifndef ION_CONSOLE_H
#define ION_CONSOLE_H
namespace Ion {
namespace Console {
void writeChar(char c);
char readChar();
// The lines are NULL-terminated
void writeLine(const char * line);
void readLine(char * line, int maxLineLength);
}
}
#endif