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.
34 lines
776 B
34 lines
776 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
**********/
|
|
/*
|
|
*/
|
|
|
|
#include "ngspice.h"
|
|
#include "isrcdefs.h"
|
|
#include "suffix.h"
|
|
|
|
|
|
void
|
|
ISRCdestroy(GENmodel **inModel)
|
|
{
|
|
ISRCmodel **model = (ISRCmodel**)inModel;
|
|
ISRCinstance *here;
|
|
ISRCinstance *prev = NULL;
|
|
ISRCmodel *mod = *model;
|
|
ISRCmodel *oldmod = NULL;
|
|
|
|
for( ; mod ; mod = mod->ISRCnextModel) {
|
|
if(oldmod) FREE(oldmod);
|
|
oldmod = mod;
|
|
prev = (ISRCinstance *)NULL;
|
|
for(here = mod->ISRCinstances ; here ; here = here->ISRCnextInstance) {
|
|
if(prev) FREE(prev);
|
|
prev = here;
|
|
}
|
|
if(prev) FREE(prev);
|
|
}
|
|
if(oldmod) FREE(oldmod);
|
|
*model = NULL;
|
|
}
|