Jspice3
dcosetp.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: 1985 Thomas L. Quarles
5  1993 Stephen R. Whiteley
6 ****************************************************************************/
7 
8 #include "spice.h"
9 #include <stdio.h>
10 #include "cktdefs.h"
11 #include "dcodefs.h"
12 #include "jobdefs.h"
13 #include "iferrmsg.h"
14 
15 
16 /* ARGSUSED */
17 int
18 DCOsetParm(cktp,anal,which,value)
19 
20 GENERIC *cktp;
21 GENERIC *anal;
22 int which;
23 IFvalue *value;
24 {
25  return (E_BADPARM);
26 }
27 
28 
30  {
31  "DCOP",
32  "D.C. Operating point analysis",
33 
34  0,
35  NULL,
36  },
37  sizeof(DCOAN),
38  NODOMAIN,
39  DCOparse,
40  DCOsetParm,
42  DCOan
43 };
Definition: dcodefs.h:16
#define NODOMAIN
Definition: jobdefs.h:32
int DCOan()
#define E_BADPARM
Definition: iferrmsg.h:26
int DCOsetParm(GENERIC *cktp, GENERIC *anal, int which, IFvalue *value)
Definition: dcosetp.c:18
#define NULL
Definition: spdefs.h:121
int DCOaskQuest()
SPICEanalysis DCOinfo
Definition: dcosetp.c:29
int DCOparse()
char GENERIC
Definition: ifsim.h:27