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
672 B

/*************
* Header file for arg.c
* 1999 E. Rouat
************/
#ifndef ngspice_ARG_H
#define ngspice_ARG_H
char *prompt(FILE *fp);
wordlist *process(wordlist *wlist);
void arg_print(const wordlist *wl, const struct comm *command);
void arg_plot(const wordlist *wl, const struct comm *command);
void arg_load(const wordlist *wl, const struct comm *command);
void arg_let(const wordlist *wl, const struct comm *command);
void arg_set(const wordlist *wl, const struct comm *command);
void arg_display(const wordlist *wl, const struct comm *command);
void arg_enodes(const wordlist *wl, const struct comm *command);
void outmenuprompt(const char *string);
#endif