xref: /dragonfly/games/hack/def.func_tab.h (revision 5de36205)
1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* def.func_tab.h - version 1.0.2 */
3 /* $DragonFly: src/games/hack/def.func_tab.h,v 1.2 2005/05/22 03:37:05 y0netan1 Exp $ */
4 
5 struct func_tab {
6 	char f_char;
7 	int (*f_funct)();
8 };
9 
10 extern struct func_tab cmdlist[];
11 
12 struct ext_func_tab {
13 	const char *ef_txt;
14 	int (*ef_funct)();
15 };
16 
17 extern struct ext_func_tab extcmdlist[];
18