aboutsummaryrefslogtreecommitdiff
path: root/hack/def.func_tab.h
blob: ceb952c52e97511a4660c65517da895556eaa511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* def.func_tab.h - version 1.0.2 */
/* $DragonFly: src/games/hack/def.func_tab.h,v 1.3 2006/08/21 19:45:32 pavalos Exp $ */

struct func_tab {
	char f_char;
	int (*f_funct)(void);
};

struct ext_func_tab {
	const char *ef_txt;
	int (*ef_funct)(void);
};