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

📄 asrcdestroy.c

📁 支持数字元件仿真的SPICE插件
💻 C
字号:
/* * Copyright (c) 1987 Kanwar Jit Singh * singh@ic.Berkeley.edu */#include "prefix.h"#include <stdio.h>#include "ASRCdefs.h"#include "util.h"#include "suffix.h"RCSID("ASRCdestroy.c $Revision: 1.1 $ on $Date: 90/10/11 12:40:26 $")voidASRCdestroy(model)    GENmodel **model;{    ASRCmodel **start = (ASRCmodel**)model; /* starting model */    ASRCinstance *here;     /* current instance */    ASRCinstance *prev = NULL;  /* previous instance */    ASRCmodel *mod = *start;    /* current model */    ASRCmodel *oldmod = NULL;   /* previous model */    for( ; mod ; mod = mod->ASRCnextModel) {        if(oldmod) FREE(oldmod);        oldmod = mod;        prev = (ASRCinstance *)NULL;        for(here = mod->ASRCinstances ; here ; here = here->ASRCnextInstance) {            if(prev) FREE(prev);            prev = here;        }        if(prev) FREE(prev);    }    if(oldmod) FREE(oldmod);    *model = NULL;}

⌨️ 快捷键说明

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