xref: /original-bsd/games/hack/def.func_tab.h (revision 77936e01)
1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* def.func_tab.h - version 1.0.2 */
3 
4 struct func_tab {
5 	char f_char;
6 	int (*f_funct)();
7 };
8 
9 extern struct func_tab cmdlist[];
10 
11 struct ext_func_tab {
12 	char *ef_txt;
13 	int (*ef_funct)();
14 };
15 
16 extern struct ext_func_tab extcmdlist[];
17