2018-12-28 16:30:48 +01:00

7 lines
65 B
C

int inbyte(void)
{
char ch = 0;
read(0, &ch, 1);
return ch;
}