⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 touchwin.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
# include	"curses.ext"/* * make it look like the whole window has been changed. * * 5/9/83 (Berkeley) @(#)touchwin.c	1.2 */touchwin(win)reg WINDOW	*win;{	reg WINDOW	*wp;	do_touch(win);	for (wp = win->_nextp; wp != win; wp = wp->_nextp)		do_touch(wp);}/* * do_touch: *	Touch the window */staticdo_touch(win)reg WINDOW	*win; {	reg int		y, maxy, maxx;	maxy = win->_maxy;	maxx = win->_maxx - 1;	for (y = 0; y < maxy; y++) {		win->_firstch[y] = 0;		win->_lastch[y] = maxx;	}}

⌨️ 快捷键说明

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