You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
809 B
36 lines
809 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
**********/
|
|
/*
|
|
*/
|
|
|
|
#include "ngspice.h"
|
|
#include <stdio.h>
|
|
#include "vcvsdefs.h"
|
|
#include "suffix.h"
|
|
|
|
|
|
void
|
|
VCVSdestroy(inModel)
|
|
GENmodel **inModel;
|
|
{
|
|
VCVSmodel **model = (VCVSmodel **)inModel;
|
|
VCVSinstance *here;
|
|
VCVSinstance *prev = NULL;
|
|
VCVSmodel *mod = *model;
|
|
VCVSmodel *oldmod = NULL;
|
|
|
|
for( ; mod ; mod = mod->VCVSnextModel) {
|
|
if(oldmod) FREE(oldmod);
|
|
oldmod = mod;
|
|
prev = (VCVSinstance *)NULL;
|
|
for(here = mod->VCVSinstances ; here ; here = here->VCVSnextInstance) {
|
|
if(prev) FREE(prev);
|
|
prev = here;
|
|
}
|
|
if(prev) FREE(prev);
|
|
}
|
|
if(oldmod) FREE(oldmod);
|
|
*model = NULL;
|
|
}
|