settty.c

来自「AUPE的源代码」· C语言 代码 · 共 27 行

C
27
字号
#include	<termios.h>
#include	"ourhdr.h"

int
main(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 + -
显示快捷键?