/* Structure for the table of initial key bindings. */ struct key_tab { int k_code; /* Key code */ int (*k_fp)(int, int); /* Routine to handle it */ }; extern struct key_tab keytab[]; /* key bind to functions table */