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.
22 lines
554 B
22 lines
554 B
/*************
|
|
* Header file for inp.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_INP_H
|
|
#define ngspice_INP_H
|
|
|
|
void com_listing(wordlist *wl);
|
|
void com_edit(wordlist *wl);
|
|
void com_source(wordlist *wl);
|
|
void com_mc_source(wordlist *wl);
|
|
void com_circbyline(wordlist *wl);
|
|
|
|
void line_free_x(struct card *deck, bool recurse);
|
|
#define line_free(line, flag) \
|
|
do { \
|
|
line_free_x(line, flag); \
|
|
line = NULL; \
|
|
} while(0)
|
|
|
|
#endif
|