fig18.10

来自「unix环境编程」· 10 代码 · 共 27 行

10
27
字号
#include "apue.h"#include <termios.h>intmain(void){	struct termios	term;	long			vdisable;	if (isatty(STDIN_FILENO) == 0)		err_quit("standard input is not a terminal device");	if ((vdisable = fpathconf(STDIN_FILENO, _PC_VDISABLE)) < 0)		err_quit("fpathconf error or _POSIX_VDISABLE not in effect");	if (tcgetattr(STDIN_FILENO, &term) < 0)	/* fetch tty state */		err_sys("tcgetattr error");	term.c_cc[VINTR] = vdisable;	/* disable INTR character */	term.c_cc[VEOF]  = 2;			/* EOF is Control-B */	if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &term) < 0)		err_sys("tcsetattr error");	exit(0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?