console_line.cpp
531 Bytes
#include <ion.h>
namespace Ion {
namespace Console {
char readChar();
void writeChar(char c);
void writeLine(const char * line) {
while (*line != 0) {
writeChar(*line++);
}
writeChar('\r');
writeChar('\n');
}
void readLine(char * line, int maxLineLength) {
if (maxLineLength <= 0) {
return;
}
char * cursor = line;
char * last = line+maxLineLength-1;
while (true) {
*cursor = readChar();
if (*cursor == '\r' || cursor == last) {
*cursor = 0;
return;
}
cursor++;
}
}
}
}