mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-25 08:41:01 +01:00
19 lines
277 B
C++
19 lines
277 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);
|
|
bool transmissionDone();
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|