pclose.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 24 行

C
24
字号
/* Copyright (c) 1979 Regents of the University of California */static char sccsid[] = "@(#)PCLOSE.c 1.6 1/21/83";/* * Close all files associated with the topmost stack frame. */#include "h00vars.h"#include "libpc.h"PCLOSE(level)	struct iorec		*level;{	register struct iorec	*next;	next = _fchain.fchain;	while(next != FILNIL && next->flev <= level) {		next = PFCLOSE(next, TRUE);	}	_fchain.fchain = next;}

⌨️ 快捷键说明

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