📄 asrcfindbr.c
字号:
/* * Copyright (c) 1987 Kanwar Jit Singh * singh@ic.Berkeley.edu */#include "prefix.h"#include <stdio.h>#include "CKTdefs.h"#include "IFsim.h"#include "ASRCdefs.h"#include "SPerror.h"#include "util.h"#include "suffix.h"RCSID("ASRCfindBranch.c $Revision: 1.1 $ on $Date: 90/10/11 12:40:27 $")intASRCfindBr(ckt,inputModel,name) register CKTcircuit *ckt; GENmodel *inputModel; register IFuid name;{ register ASRCinstance *here; register ASRCmodel *model = (ASRCmodel*)inputModel; int error; CKTnode *tmp; for( ; model != NULL; model = model->ASRCnextModel) { for (here = model->ASRCinstances; here != NULL; here = here->ASRCnextInstance) { if(here->ASRCname == name) { if(here->ASRCbranch == 0) { error = CKTmkCur(ckt,&tmp, here->ASRCname,"current"); if(error) return(error); here->ASRCbranch = tmp->number; } return(here->ASRCbranch); } } } return(0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -