www.pudn.com > progs.zip > ch3hdr2.h
/*
* Header for calculator program
*/
#define NSYMS 20 /* maximum number of symbols */
struct symtab {
char *name;
double (*funcptr)();
double value;
} symtab[NSYMS];
struct symtab *symlook();