mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 19:37:18 -05:00
15 lines
283 B
C
15 lines
283 B
C
#ifndef _TERMIO_H_
|
|
#define _TERMIO_H_
|
|
|
|
extern int ttrow ; /* Row location of HW cursor */
|
|
extern int ttcol ; /* Column location of HW cursor */
|
|
|
|
void ttopen( void) ;
|
|
void ttclose( void) ;
|
|
int ttputc( int c) ;
|
|
void ttflush( void) ;
|
|
int ttgetc( void) ;
|
|
int typahead( void) ;
|
|
|
|
#endif
|