Home | History | Annotate | Line # | Download | only in hack
def.func_tab.h revision 1.3
      1 /*
      2  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
      3  *
      4  *	$NetBSD: def.func_tab.h,v 1.3 1995/03/23 08:29:23 cgd Exp $
      5  */
      6 
      7 struct func_tab {
      8 	char f_char;
      9 	int (*f_funct)();
     10 };
     11 
     12 extern struct func_tab cmdlist[];
     13 
     14 struct ext_func_tab {
     15 	char *ef_txt;
     16 	int (*ef_funct)();
     17 };
     18 
     19 extern struct ext_func_tab extcmdlist[];
     20