- 论坛徽章:
- 0
|
c程序与标准输入
程序实现:
#include <stdio.h>;
#include <termio.h>;
static struct termio ttysave ;
void restore() ;
char getch() ;
main()
{
puts( "---------------------------" ) ;
puts( "enter a key : " );
getch() ;
puts( "\n--------------" );
exit( 0 );
}
char getch()
{
static char ch ;
static int total, flag = 1 ;
struct termio tty ;
if( flag )
{
flag = 0 ;
if( ioctl( 0, TCGETA, &tty ) == -1 )
{
perror( "ioctl" );
exit( -1 );
}
ttysave = tty ;
tty.c_lflag &= ~( ICANON | ECHO | ISIG ) ;
tty.c_cc[VMIN] = 1 ; // MIN
tty.c_cc{VTIME] = 0 ; // TIME
if( ioctl( 0, TCSETAF, &tty ) == -1 )
{
restore();
perror( "ioctl" );
exit( -2 );
}
}
switch( total = read( 0, &ch, 1 ))
{
case -1 :
restore() ;
perror( "read" );
exit( 3 );
case 0:
restore():
fputs( "EOF error!", stderr );
exit( 4 ) ;
default:
.....
}
restore();
return( ch );
}
void restore()
{
if( ioctl( 0, TCSETAF, &ttysave ) == -1 )
{
perror( "ioctl" );
exit( 5 );
}
return ;
}
|
|