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

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