⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soi3dest.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********STAG version 2.7Copyright 2000 owned by the United Kingdom Secretary of State for Defenceacting through the Defence Evaluation and Research Agency.Developed by :     Jim Benson,                   Department of Electronics and Computer Science,                   University of Southampton,                   United Kingdom.With help from :   Nele D'Halleweyn, Ketan Mistry, Bill Redman-White, and Craig Easson.Based on STAG version 2.1Developed by :     Mike Lee,With help from :   Bernard Tenbroek, Bill Redman-White, Mike Uren, Chris Edwards                   and John Bunyan.Acknowledgements : Rupert Howes and Pete Mole.**********//********** Modified by Paolo Nenzi 2002ngspice integration**********/#include "ngspice.h"#include "soi3defs.h"#include "suffix.h"voidSOI3destroy(GENmodel **inModel){    SOI3model **model = (SOI3model**)inModel;    SOI3instance *here;    SOI3instance *prev = NULL;    SOI3model *mod = *model;    SOI3model *oldmod = NULL;    for( ; mod ; mod = mod->SOI3nextModel) {        if(oldmod) FREE(oldmod);        oldmod = mod;        prev = (SOI3instance *)NULL;        for(here = mod->SOI3instances ; here ; here = here->SOI3nextInstance) {            if(prev){              /*  if(prev->SOI3sens) FREE(prev->SOI3sens);  */                FREE(prev);            }            prev = here;        }        if(prev) FREE(prev);    }    if(oldmod) FREE(oldmod);    *model = NULL;}

⌨️ 快捷键说明

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