xref: /netbsd/games/hack/def.func_tab.h (revision bf9ec67e)
1 /*	$NetBSD: def.func_tab.h,v 1.5 2001/03/25 20:43:58 jsm 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 const struct func_tab cmdlist[];
14 
15 struct ext_func_tab {
16 	const char *ef_txt;
17 	int (*ef_funct) __P((void));
18 };
19 
20 extern const struct ext_func_tab extcmdlist[];
21 #endif /* _DEF_FUNC_TAB_H_ */
22