collect if_inpdeck() if_run() if_cktfree() if_dump() if_option() in "spiceif.h"
This commit is contained in:
parent
a9ca8d7331
commit
894dcead35
11
ChangeLog
11
ChangeLog
|
|
@ -1,3 +1,14 @@
|
|||
2010-10-16 Robert Larice
|
||||
* src/frontend/com_dump.c ,
|
||||
* src/frontend/inp.c ,
|
||||
* src/frontend/mw_coms.c ,
|
||||
* src/frontend/options.c ,
|
||||
* src/frontend/runcoms.c ,
|
||||
* src/frontend/runcoms2.c ,
|
||||
* src/include/fteext.h ,
|
||||
* src/main.c :
|
||||
collect if_inpdeck() if_run() if_cktfree() if_dump() if_option() in "spiceif.h"
|
||||
|
||||
2010-10-16 Robert Larice
|
||||
* src/frontend/misccoms.c ,
|
||||
* src/frontend/plotting/plotcurv.c ,
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#include "com_dump.h"
|
||||
#include "cpextern.h"
|
||||
#include "fteext.h"
|
||||
#include "spiceif.h"
|
||||
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ $Id$
|
|||
#include "breakp2.h"
|
||||
#include "../misc/util.h" /* dirname() */
|
||||
#include "../misc/mktemp.h"
|
||||
#include "spiceif.h"
|
||||
#include "error.h" /* controlled_exit() */
|
||||
|
||||
#ifdef XSPICE
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
#include "mw_coms.h"
|
||||
#include "variable.h"
|
||||
#include "runcoms.h"
|
||||
#include "spiceif.h"
|
||||
|
||||
/* Clears ckt and removes current circ. form database */
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ $Id$
|
|||
#include "options.h"
|
||||
#include "variable.h"
|
||||
#include "control.h"
|
||||
#include "spiceif.h"
|
||||
|
||||
|
||||
/* static declarations */
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ $Id$
|
|||
#include "completion.h"
|
||||
#include "runcoms.h"
|
||||
#include "variable.h"
|
||||
#include "spiceif.h"
|
||||
|
||||
#ifdef XSPICE
|
||||
/* gtri - add - 12/12/90 - wbk - include ipc stuff */
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ $Id$
|
|||
#include "variable.h"
|
||||
#include "breakp2.h"
|
||||
#include "plotting/graf.h"
|
||||
#include "spiceif.h"
|
||||
|
||||
#include "inpdefs.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -371,16 +371,11 @@ extern int main(int argc, char **argv);
|
|||
|
||||
extern bool if_tranparams(struct circ *ci, double *start, double *stop, double *step);
|
||||
extern char *if_errstring(int code);
|
||||
extern CKTcircuit *if_inpdeck(struct line *deck, INPtables **tab);
|
||||
extern int if_run(CKTcircuit *t, char *what, wordlist *args, INPtables *tab);
|
||||
extern int if_sens_run(CKTcircuit *t, wordlist *args, INPtables *tab);
|
||||
extern struct variable *(*if_getparam)(CKTcircuit *ckt, char** name, char* param, int ind, int do_model);
|
||||
extern struct variable * nutif_getparam(CKTcircuit *ckt, char **name, char *param, int ind, int do_model);
|
||||
extern struct variable *spif_getparam(CKTcircuit *ckt, char **name, char *param, int ind, int do_model);
|
||||
extern struct variable *spif_getparam_special(CKTcircuit *ckt, char **name, char *param, int ind, int do_model);
|
||||
extern void if_cktfree(CKTcircuit *ckt, INPtables *tab);
|
||||
extern void if_dump(CKTcircuit *ckt, FILE *file);
|
||||
extern int if_option(CKTcircuit *ckt, char *name, enum cp_types type, void *value);
|
||||
extern void if_setndnames(char *line);
|
||||
extern void if_setparam_model(CKTcircuit *ckt, char **name, char *val );
|
||||
extern void if_setparam(CKTcircuit *ckt, char **name, char *param, struct dvec *val, int do_model);
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ extern int rl_catch_signals; /* missing from editline/readline.h */
|
|||
#else
|
||||
#include "misc/getopt_bsd.h"
|
||||
#endif
|
||||
#include "frontend/spiceif.h"
|
||||
#include "frontend/resource.h"
|
||||
#include "frontend/variable.h"
|
||||
#include "frontend/display.h" /* added by SDB to pick up Input() fcn */
|
||||
|
|
|
|||
Loading…
Reference in New Issue