summaryrefslogtreecommitdiffstats
path: root/hack/def.func_tab.h
blob: 100c0a6a3ba1e39e194b86489269bec685673487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*	$NetBSD: def.func_tab.h,v 1.5 2001/03/25 20:43:58 jsm Exp $	*/

/*
 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
 */
#ifndef _DEF_FUNC_TAB_H_
#define _DEF_FUNC_TAB_H_
struct func_tab {
	char f_char;
	int (*f_funct) __P((void));
};

extern const struct func_tab cmdlist[];

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

extern const struct ext_func_tab extcmdlist[];
#endif /* _DEF_FUNC_TAB_H_ */