mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
16 lines
261 B
C
16 lines
261 B
C
/*
|
|
* Interface for the imlac TTYIN (TTY input).
|
|
*/
|
|
|
|
#ifndef TTYIN_H
|
|
#define TTYIN_H
|
|
|
|
int ttyin_mount(char *fname);
|
|
void ttyin_dismount(void);
|
|
int ttyin_get_char(void);
|
|
void ttyin_tick(long cycles);
|
|
bool ttyin_ready(void);
|
|
void ttyin_clear_flag(void);
|
|
|
|
#endif
|