📄 b4mdel.c
字号:
/**** BSIM4.4.0 Released by Xuemei (Jane) Xi 03/04/2004 ****//********** * Copyright 2004 Regents of the University of California. All rights reserved. * File: b4mdel.c of BSIM4.4.0. * Author: 2000 Weidong Liu * Authors: 2001- Xuemei Xi, Jin He, Kanyu Cao, Mohan Dunga, Mansun Chan, Ali Niknejad, Chenming Hu. * Project Director: Prof. Chenming Hu. **********/#include "ngspice.h"#include "bsim4def.h"#include "sperror.h"#include "suffix.h"intBSIM4mDelete(inModel,modname,kill)GENmodel **inModel;IFuid modname;GENmodel *kill;{BSIM4model **model = (BSIM4model**)inModel;BSIM4model *modfast = (BSIM4model*)kill;BSIM4instance *here;BSIM4instance *prev = NULL;BSIM4model **oldmod; oldmod = model; for (; *model ; model = &((*model)->BSIM4nextModel)) { if ((*model)->BSIM4modName == modname || (modfast && *model == modfast)) goto delgot; oldmod = model; } return(E_NOMOD);delgot: *oldmod = (*model)->BSIM4nextModel; /* cut deleted device out of list */ for (here = (*model)->BSIM4instances; here; here = here->BSIM4nextInstance) { if(prev) FREE(prev); prev = here; } if(prev) FREE(prev); FREE(*model); return(OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -