mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 17:29:17 +00:00
7 lines
65 B
C
7 lines
65 B
C
int inbyte(void)
|
|
{
|
|
char ch = 0;
|
|
read(0, &ch, 1);
|
|
return ch;
|
|
}
|