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.
21 lines
395 B
21 lines
395 B
#include <config.h>
|
|
#include <ngspice.h>
|
|
#include <bool.h>
|
|
#include <wordlist.h>
|
|
#include <inpdefs.h>
|
|
#include "circuits.h"
|
|
#include "com_dump.h"
|
|
#include "streams.h"
|
|
#include "fteext.h"
|
|
|
|
|
|
void
|
|
com_dump(wordlist *wl)
|
|
{
|
|
if (!ft_curckt || !ft_curckt->ci_ckt) {
|
|
fprintf(cp_err, "Error: no circuit loaded.\n");
|
|
return;
|
|
}
|
|
if_dump(ft_curckt->ci_ckt, cp_out);
|
|
return;
|
|
}
|