summaryrefslogtreecommitdiffstats
path: root/hack/def.func_tab.h
blob: 8295a3507c9a86ab8c68af9031d55d4d59fd6dea (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.4 1997/10/19 16:56:58 christos 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 struct func_tab cmdlist[];

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

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