dfdispose.c

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

C
33
字号
/* Copyright (c) 1982 Regents of the University of California */static	char sccsid[] = "@(#)DFDISPOSE.c	4.2	(Berkeley)	1/21/83";/* * Close all active files within a dynamic record, * then dispose of the record. */#include "h00vars.h"#include "libpc.h"DFDISPOSE(var, size)	char	**var;	/* pointer to pointer being deallocated */	long	size;	/* sizeof(bletch) */{	register struct iorec	*next, *prev;	struct iorec *start, *end;	start = (struct iorec *)(*var);	end = (struct iorec *)(*var + size);	prev = (struct iorec *)(&_fchain);	next = _fchain.fchain;	while(next != FILNIL && (next->flev < GLVL || next < start)) {		prev = next;		next = next->fchain;	}	while(next != FILNIL && next < end)		next = PFCLOSE(next, TRUE);	prev->fchain = next;	DISPOSE(var, size);}

⌨️ 快捷键说明

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