1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-04 19:40:41 +00:00
uemacs/names.h

9 lines
231 B
C
Raw Normal View History

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