summaryrefslogtreecommitdiffstats
path: root/hack/def.func_tab.h
blob: ca1fd352d28c4cca7615322f2a568ff3f95a74a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
 *
 *	$Id: def.func_tab.h,v 1.2 1993/08/02 17:16:43 mycroft Exp $
 */

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

extern struct func_tab cmdlist[];

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

extern struct ext_func_tab extcmdlist[];