uemacs/termio.h

17 lines
338 B
C
Raw Normal View History

#ifndef _TERMIO_H_
#define _TERMIO_H_
2013-10-11 04:37:31 +00:00
#define HUGE 1000 /* Huge number (for row/col) */
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