#include <stddef.h>
#include "ngspice/ngspice.h"
#include "ngspice/bool.h"
#include "ngspice/wordlist.h"
#include "plotting/plotit.h"
#include "../misc/mktemp.h"
#include "com_gnuplot.h"
void
com_gnuplot(wordlist *wl)
{
char *fname = NULL;
bool tempf = FALSE;
if (wl) {
fname = wl->wl_word;
wl = wl->wl_next;
}
if (!wl)
return;
if (cieq(fname, "temp") || cieq(fname, "tmp")) {
fname = smktemp("gp");
tempf = TRUE;
}
(void) plotit(wl, fname, "gnuplot");
background. */
if (tempf)
tfree(fname);
}
void
com_write_simple(wordlist *wl)
{
char *fname = NULL;
bool tempf = FALSE;
if (wl) {
fname = wl->wl_word;
wl = wl->wl_next;
}
if (!wl)
return;
if (cieq(fname, "temp") || cieq(fname, "tmp")) {
fname = smktemp("gp");
tempf = TRUE;
}
(void) plotit(wl, fname, "writesimple");
background. */
if (tempf)
tfree(fname);
}