mos2destroy.c

来自「支持数字元件仿真的SPICE插件」· C语言 代码 · 共 39 行

C
39
字号
/* * Copyright (c) 1985 Thomas L. Quarles */#include "prefix.h"#include <stdio.h>#include "util.h"#include "MOS2defs.h"#include "suffix.h"RCSID("MOS2destroy.c $Revision: 1.1 $ on $Date: 90/10/11 12:44:52 $")voidMOS2destroy(inModel)    GENmodel **inModel;{    MOS2model **model = (MOS2model **)inModel;    MOS2instance *here;    MOS2instance *prev = NULL;    MOS2model *mod = *model;    MOS2model *oldmod = NULL;    for( ; mod ; mod = mod->MOS2nextModel) {        if(oldmod) FREE(oldmod);        oldmod = mod;        prev = (MOS2instance *)NULL;        for(here = mod->MOS2instances ; here ; here = here->MOS2nextInstance) {            if(prev){          if(prev->MOS2sens) FREE(prev->MOS2sens);          FREE(prev);        }            prev = here;        }        if(prev) FREE(prev);    }    if(oldmod) FREE(oldmod);    *model = NULL;}

⌨️ 快捷键说明

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