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

📄 inpgettitle.c

📁 支持数字元件仿真的SPICE插件
💻 C
字号:
/* * Copyright (c) 1985 Thomas L. Quarles */    /*  INPgetTitle(ckt,data)     *      get the title card from the specified data deck and pass     *      it through to SPICE-3.     */#include "prefix.h"#include <stdio.h>#include "util.h"#include "INPdefs.h"#ifndef CMS#include "IFerrmsgs.h"#else  /* CMS */#include "IFerrmsg.h"#endif /* CMS */#include "CPstd.h"#ifndef CMS#include "FTEextern.h"#else  /* CMS */#include "FTEexter.h"#endif /* CMS */#include "suffix.h"RCSID("INPgetTitle.c $Revision: 1.1 $ on $Date: 91/04/02 11:56:48 $")intINPgetTitle(ckt,data)    GENERIC **ckt;    card **data;{    int error;    error = (*(ft_sim->newCircuit))(ckt);    if(error) return(error);    *data = (*data)->nextcard;    return(OK);}

⌨️ 快捷键说明

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