Commit | Line | Data |
---|---|---|
c0cc6912 SC |
1 | |
2 | ||
3 | ||
4 | ||
5 | void EXFUN( map_over_members, (void (*function) (), char **files, int count)); | |
6 | ||
7 | ||
8 | ||
9 | ||
10 | ||
11 | struct list { | |
12 | char *name; | |
13 | struct list *next; | |
14 | } ; | |
15 | ||
16 | void EXFUN(maybequit,(void)); | |
17 | void EXFUN(prompt,(void)); | |
18 | void EXFUN(ar_clear,(void)); | |
19 | void EXFUN(ar_replace,(struct list *)); | |
20 | void EXFUN(ar_delete,(struct list *)); | |
21 | void EXFUN(ar_save, (void)); | |
22 | void EXFUN(ar_list, (void)); | |
23 | void EXFUN(ar_open, (char *, int)); | |
24 | void EXFUN(ar_directory,(char *, struct list *, char *)); | |
25 | void EXFUN(ar_addmod, (struct list *)); | |
26 | void EXFUN(ar_addlib, (char *, struct list *)); | |
27 | int interactive; | |
28 | ||
29 | int yyparse(); |