mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
9 lines
231 B
C
9 lines
231 B
C
/* 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 */
|
|
|