blob: 363c8f3b38190853d46457552152f8371fb7ca7c (
plain)
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.
*
* $NetBSD: def.func_tab.h,v 1.3 1995/03/23 08:29:23 cgd 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[];
|