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

📄 soi3del.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 "sperror.h"#include "suffix.h"intSOI3delete(GENmodel *inModel, IFuid name, GENinstance **inst){    SOI3model *model = (SOI3model *)inModel;    SOI3instance **fast = (SOI3instance **)inst;    SOI3instance **prev = NULL;    SOI3instance *here;    for( ; model ; model = model->SOI3nextModel) {        prev = &(model->SOI3instances);        for(here = *prev; here ; here = *prev) {            if(here->SOI3name == name || (fast && here==*fast) ) {                *prev= here->SOI3nextInstance;                FREE(here);                return(OK);            }            prev = &(here->SOI3nextInstance);        }    }    return(E_NODEV);}

⌨️ 快捷键说明

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