Files
Upsilon/ion/src/shared/console_stdio.cpp
2017-09-01 04:00:28 -04:00

18 lines
187 B
C++

#include <ion/console.h>
#include <stdio.h>
namespace Ion {
namespace Console {
char readChar() {
return getchar();
}
void writeChar(char c) {
putchar(c);
fflush(stdout);
}
}
}