#ifndef FUNCS_H #define FUNCS_H #define FNUM 0 #define FSTR 1 struct fun { char *name; int (*func)(); int nargs; bool type; }; typedef struct fun FUN; extern struct fun wordlist[]; #endif /* FUNCS_H */