1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-03 19:10:42 +00:00
uemacs/ebind.h

10 lines
300 B
C

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