1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-09 13:30:43 +00:00
uemacs/ebind.h

9 lines
226 B
C
Raw Normal View History

/* 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 */