23 lines
661 B
C
23 lines
661 B
C
/*************
|
|
* Header file for spiceif.c
|
|
* 1999 E. Rouat
|
|
* $Id$
|
|
************/
|
|
|
|
#ifndef SPICEIF_H_INCLUDED
|
|
#define SPICEIF_H_INCLUDED
|
|
|
|
CKTcircuit * if_inpdeck(struct line *deck, INPtables **tab);
|
|
int if_run(CKTcircuit *t, char *what, wordlist *args, INPtables *tab);
|
|
int if_option(CKTcircuit *ckt, char *name, enum cp_types type, void *value);
|
|
void if_dump(CKTcircuit *ckt, FILE *file);
|
|
void if_cktfree(CKTcircuit *ckt, INPtables *tab);
|
|
int if_analQbyName(CKTcircuit *ckt, int which, JOB *anal, char *name, IFvalue *parm);
|
|
|
|
#ifdef EXPERIMENTAL_CODE
|
|
void com_loadsnap(wordlist *wl);
|
|
void com_savesnap(wordlist *wl);
|
|
#endif
|
|
|
|
#endif /* SPICEIF_H_INCLUDED */
|