mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
13 lines
177 B
C
Executable File
13 lines
177 B
C
Executable File
/*
|
|
* Interface for the vimlac TTY output device.
|
|
*/
|
|
|
|
#ifndef TTYOUT_H
|
|
#define TTYOUT_H
|
|
|
|
void ttyout_clear_flag(void);
|
|
void ttyout_send(BYTE);
|
|
bool ttyout_ready(void);
|
|
|
|
#endif
|