📄 erase.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[] = "@(#)erase.c 1.1 92/07/30 SMI"; /* from S5R3 1.3 */#endif# include "curses.ext"/* * This routine erases everything on the _window. * */werase(win)register WINDOW *win;{ register int y; register chtype *sp, *end, *start, *maxx; register int minx;# ifdef DEBUG if(outf) fprintf(outf, "WERASE(%0.2o), _maxx %d\n", win, win->_maxx);# endif for (y = 0; y < win->_maxy; y++) { minx = _NOCHANGE; maxx = NULL; start = win->_y[y]; end = &start[win->_maxx]; for (sp = start; sp < end; sp++) {#ifdef DEBUG if (y == 23) if(outf) fprintf(outf, "sp %x, *sp %c %o\n", sp, *sp, *sp);#endif if (*sp != ' ') { maxx = sp; if (minx == _NOCHANGE) minx = sp - start; *sp = ' '; } } if (minx != _NOCHANGE) { if (win->_firstch[y] > minx || win->_firstch[y] == _NOCHANGE) win->_firstch[y] = minx; if (win->_lastch[y] < maxx - win->_y[y]) win->_lastch[y] = maxx - win->_y[y]; }# ifdef DEBUG if(outf) fprintf(outf, "WERASE: minx %d maxx %d _firstch[%d] %d, start %x, end %x\n", minx, maxx ? maxx-start : NULL, y, win->_firstch[y], start, end);# endif } win->_curx = win->_cury = 0; win->_flags |= _WINCHANGED;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -