/* Structure for the name binding table. */ struct name_bind { char *n_name; /* name of function key */ int (*n_func)(int, int); /* function name is bound to */ }; extern struct name_bind names[];/* name to function table */