mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-29 19:49:58 +02:00
18 lines
252 B
C++
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
|