|
|
BSD 4.2
/* 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);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.