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

📄 putwin.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[] = "@(#)putwin.c 1.1 92/07/30 SMI"; /* from S5R3.1 1.4 */#endif#include	"curses_inc.h"/* * Write a window to a file. * * win:	the window to write out. * filep:	the file to write to. */putwin(win, filep)WINDOW	*win;FILE	*filep;{    int			maxx, nelt;    register	chtype	**wcp, **ecp;    /* write everything from _cury to _bkgd inclusive */    nelt = sizeof(WINDOW) - sizeof(win->_y) - sizeof(win->_parent) -	   sizeof(win->_parx) - sizeof(win->_pary) -	   sizeof(win->_ndescs) - sizeof(win->_delay);    if (fwrite((char *) &(win->_cury), 1, nelt, filep) != nelt)	goto err;    /* Write the character image */    maxx = win->_maxx;    ecp = (wcp = win->_y) + win->_maxy;    while (wcp < ecp)	if (fwrite((char *) *wcp++, sizeof(chtype), maxx, filep) != maxx)err:	    return (ERR);    return (OK);}

⌨️ 快捷键说明

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