mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
17 lines
294 B
C
17 lines
294 B
C
|
/*
|
||
|
* Apple //gs GSOS Machine-dependent routines.
|
||
|
*/
|
||
|
|
||
|
void flushbuf(void);
|
||
|
|
||
|
int inchar(void);
|
||
|
int outchar(char);
|
||
|
void outstr(char *);
|
||
|
void toutstr(char *);
|
||
|
void beep(void);
|
||
|
void windinit(void);
|
||
|
void windexit(int);
|
||
|
void windgoto(int,int);
|
||
|
void delay(void);
|
||
|
unsigned int sleep(unsigned int);
|