Jspice3
dcoprse.c
Go to the documentation of this file.
1 /***************************************************************************
2 JSPICE3 adaptation of Spice3f2 - Copyright (c) Stephen R. Whiteley 1992
3 Copyright 1990 Regents of the University of California. All rights reserved.
4 Authors: 1987 Thomas L. Quarles
5  1993 Stephen R. Whiteley
6 ****************************************************************************/
7 
8 #include "spice.h"
9 #include "ftedefs.h"
10 #include "inpdefs.h"
11 #include "inpmacs.h"
12 #include "misc.h"
13 
14 /* ARGSUSED */
15 int
16 DCOparse(ckt,tab,which,currentp,line,task,gnode)
17 
18 /* .op */
19 GENERIC *ckt;
20 INPtables *tab;
21 int which;
22 GENERIC *currentp;
23 char **line;
24 GENERIC *task;
25 GENERIC *gnode;
26 {
27  GENERIC *foo; /* pointer to analysis */
28  int error; /* error code temporary */
29  card *current = (card *)currentp;
30 
31  IFC(newAnalysis,(ckt,which,"operating point",&foo,task))
32  return (0);
33 }
int DCOparse(GENERIC *ckt, INPtables *tab, int which, GENERIC *currentp, char **line, GENERIC *task, GENERIC *gnode)
Definition: dcoprse.c:16
Definition: inpdefs.h:62
Definition: subckt.c:51
Definition: fteinp.h:14
#define IFC(func, args)
Definition: inpmacs.h:19
char GENERIC
Definition: ifsim.h:27