📄 wredrawln.c
字号:
/* Copyright (c) 1984 AT&T *//* All Rights Reserved *//* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T *//* The copyright notice above does not evidence any *//* actual or intended publication of such source code. */#ifndef lintstatic char sccsid[] = "@(#)wredrawln.c 1.1 92/07/30 SMI"; /* from S5R3.1 1.2 */#endif/* * This routine indicates to curses that a screen line is garbaged and * should be thrown away before having anything written over the top of it. * It could be used for programs such as editors which want a command to * redraw just a single line. Such a command could be used in cases where * there is a noisy line and redrawing the entire screen would be subject * to even more noise. Just redrawing the single line gives some semblance * of hope that it would show up unblemished. * * This is a more refined version of clearok */#include "curses_inc.h"wredrawln(win, begline, numlines)register WINDOW *win;int begline;register int numlines;{ register short *firstch, *efirstch; if (numlines <= 0) return (ERR); if (begline < 0) begline = 0; if (begline + numlines > win->_maxy) numlines = win->_maxy - begline; firstch = win->_firstch + begline; efirstch = firstch + numlines; while (firstch < efirstch) *firstch++ = _REDRAW; return (win->_immed ? wrefresh(win) : OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -