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