2000-04-27 22:03:57 +02:00
|
|
|
/*************
|
|
|
|
|
* Header file for postcoms.c
|
|
|
|
|
* 1999 E. Rouat
|
|
|
|
|
************/
|
|
|
|
|
|
2013-01-23 20:57:32 +01:00
|
|
|
#ifndef ngspice_POSTCOMS_H
|
|
|
|
|
#define ngspice_POSTCOMS_H
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
void com_unlet(wordlist *wl);
|
|
|
|
|
void com_load(wordlist *wl);
|
|
|
|
|
void com_print(wordlist *wl);
|
|
|
|
|
void com_write(wordlist *wl);
|
2010-10-16 14:05:09 +02:00
|
|
|
void com_write_sparam(wordlist *wl);
|
2000-04-27 22:03:57 +02:00
|
|
|
void com_transpose(wordlist *wl);
|
|
|
|
|
void com_cross(wordlist *wl);
|
|
|
|
|
void com_destroy(wordlist *wl);
|
|
|
|
|
void com_splot(wordlist *wl);
|
|
|
|
|
|
2012-09-21 21:15:41 +02:00
|
|
|
void destroy_const_plot(void);
|
|
|
|
|
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
#endif
|