18 lines
275 B
C
18 lines
275 B
C
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
#include <bool.h>
|
||
|
|
#include <wordlist.h>
|
||
|
|
|
||
|
|
#include "plotting/plotit.h"
|
||
|
|
|
||
|
|
#include "com_plot.h"
|
||
|
|
|
||
|
|
|
||
|
|
/* plot name ... [xl[imit]] xlo xhi] [yl[imit ylo yhi] [vs xname] */
|
||
|
|
void
|
||
|
|
com_plot(wordlist *wl)
|
||
|
|
{
|
||
|
|
plotit(wl, (char *) NULL, (char *) NULL);
|
||
|
|
return;
|
||
|
|
}
|