摘要: #include static struct termios oldt;void restore_terminal_settings(void){ // Apply saved settings tcsetattr(0, TCSANOW, &oldt);}void disable_terminal_settings(void){ struct termios newt; //save terminal settings tcgetattr(0, &oldt); //init new settings newt = oldt; //change settings newt.c_l 阅读全文
posted @ 2014-01-05 14:40 busyboy 阅读(465) 评论(0) 推荐(0)