You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
396 B
16 lines
396 B
#include <ngspice.h>
|
|
|
|
#include "plotting.h"
|
|
|
|
/* Where 'constants' go when defined on initialization. */
|
|
|
|
struct plot constantplot = {
|
|
"Constant values", Spice_Build_Date, "constants",
|
|
"const", NULL, NULL, NULL, NULL, NULL, NULL, TRUE, 0
|
|
} ;
|
|
|
|
struct plot *plot_cur = &constantplot;
|
|
struct plot *plot_list = &constantplot;
|
|
int plotl_changed; /* TRUE after a load */
|
|
|
|
int plot_num = 1;
|