ngspice/src/frontend/runcoms.h

30 lines
625 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for runcoms.c
* 1999 E. Rouat
************/
2013-01-23 20:57:32 +01:00
#ifndef ngspice_RUNCOMS_H
#define ngspice_RUNCOMS_H
2000-04-27 22:03:57 +02:00
void com_scirc(wordlist *wl);
void com_pz(wordlist *wl);
void com_op(wordlist *wl);
void com_dc(wordlist *wl);
void com_ac(wordlist *wl);
void com_tf(wordlist *wl);
void com_tran(wordlist *wl);
/* SP: Stady State Analysis */
void com_pss(wordlist *wl);
/* SP */
2000-04-27 22:03:57 +02:00
void com_sens(wordlist *wl);
void com_disto(wordlist *wl);
void com_noise(wordlist *wl);
void com_run(wordlist *wl);
extern FILE *rawfileFp;
extern bool rawfileBinary;
extern char *last_used_rawfile;
extern bool resumption;
2000-04-27 22:03:57 +02:00
#endif