fteinp.h
来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C头文件 代码 · 共 33 行
H
33 行
/**********Copyright 1990 Regents of the University of California. All rights reserved.Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group**********//* * * Note that this definition must be the same as struct card in INPdefs.h... */#ifndef FTEinput_h#define FTEinput_h#include "inpdefs.h"/* This struct defines a linked list of lines from a SPICE file. */struct line { int li_linenum; char *li_line; char *li_error; struct line *li_next; struct line *li_actual;} ;/* Listing types. */#define LS_LOGICAL 1#define LS_PHYSICAL 2#define LS_DECK 3#endif /* FTEinput_h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?