20 lines
332 B
C
20 lines
332 B
C
/*
|
|
* 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[];
|