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.
33 lines
847 B
33 lines
847 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Gordon Jacobs
|
|
**********/
|
|
|
|
#include "ngspice/ngspice.h"
|
|
#include "swdefs.h"
|
|
#include "ngspice/sperror.h"
|
|
#include "ngspice/suffix.h"
|
|
|
|
|
|
int
|
|
SWdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
|
|
{
|
|
SWmodel *model = (SWmodel *) inModel;
|
|
SWinstance **fast = (SWinstance **) inst;
|
|
SWinstance **prev = NULL;
|
|
SWinstance *here;
|
|
|
|
for (; model; model = model->SWnextModel) {
|
|
prev = &(model->SWinstances);
|
|
for (here = *prev; here; here = *prev) {
|
|
if (here->SWname == name || (fast && here == *fast)) {
|
|
*prev = here->SWnextInstance;
|
|
FREE(here);
|
|
return(OK);
|
|
}
|
|
prev = &(here->SWnextInstance);
|
|
}
|
|
}
|
|
|
|
return(E_NODEV);
|
|
}
|