mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
13 lines
175 B
C
Executable File
13 lines
175 B
C
Executable File
/*
|
|
* Interface for the vimlac TTY input device.
|
|
*/
|
|
|
|
#ifndef TTYIN_H
|
|
#define TTYIN_H
|
|
|
|
void ttyin_clear_flag(void);
|
|
BYTE ttyin_get_char(void);
|
|
bool ttyin_ready(void);
|
|
|
|
#endif
|