xref: /netbsd-src/games/hack/def.func_tab.h (revision c41a4eebefede43f6950f838a387dc18c6a431bf)
1 /*	$NetBSD: def.func_tab.h,v 1.4 1997/10/19 16:56:58 christos Exp $	*/
2 
3 /*
4  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
5  */
6 #ifndef _DEF_FUNC_TAB_H_
7 #define _DEF_FUNC_TAB_H_
8 struct func_tab {
9 	char f_char;
10 	int (*f_funct) __P((void));
11 };
12 
13 extern struct func_tab cmdlist[];
14 
15 struct ext_func_tab {
16 	char *ef_txt;
17 	int (*ef_funct) __P((void));
18 };
19 
20 extern struct ext_func_tab extcmdlist[];
21 #endif /* _DEF_FUNC_TAB_H_ */
22