mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 11:27:17 -05:00
12 lines
175 B
C
12 lines
175 B
C
#ifndef _TERMIO_H_
|
|
#define _TERMIO_H_
|
|
|
|
void ttopen( void) ;
|
|
void ttclose( void) ;
|
|
int ttputc( int c) ;
|
|
void ttflush( void) ;
|
|
int ttgetc( void) ;
|
|
int typahead( void) ;
|
|
|
|
#endif
|