1 #include "ngspice/ngspice.h"
2 
3 #include "ngspice/bool.h"
4 #include "ngspice/wordlist.h"
5 
6 #include "plotting/plotit.h"
7 
8 #include "com_plot.h"
9 
10 
11 /* plot name ... [xl[imit]] xlo xhi] [yl[imit ylo yhi] [vs xname] */
12 void
com_plot(wordlist * wl)13 com_plot(wordlist *wl)
14 {
15     plotit(wl, NULL, NULL);
16 }
17 
18 #ifdef TCL_MODULE
19 void
com_bltplot(wordlist * wl)20 com_bltplot(wordlist *wl)
21 {
22     plotit(wl, NULL, "blt");
23 }
24 
25 #endif
26 
27