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

📄 v3.upd_old_y.c

📁 操作系统SunOS 4.1.3版本的源码
💻 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[] = "@(#)V3.upd_old_y.c 1.1 92/07/30 SMI"; /* from S5R3.1 1.2 */#endif#include	"curses_inc.h"extern	int	_outchar();#ifdef	_VR3_COMPAT_CODEvoid_update_old_y_area(win, nlines, ncols, start_line, start_col)WINDOW	*win;int	nlines, ncols, start_line, start_col;{    int	row, col, num_cols;    for (row = start_line; nlines > 0; nlines--, row++)	for (num_cols = ncols, col = start_col; num_cols > 0; num_cols--, col++)	    win->_y16[row][col] = _TO_OCHTYPE(win->_y[row][col]);}#endif	/* _VR3_COMPAT_CODE */

⌨️ 快捷键说明

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