Home | History | Annotate | Line # | Download | only in hack
def.func_tab.h revision 1.4
      1 /*	$NetBSD: def.func_tab.h,v 1.4 1997/10/19 16:56:58 christos Exp $	*/
      2 
      3 /*
      4  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
      5  */
      6 #ifndef _DEF_FUNC_TAB_H_
      7 #define _DEF_FUNC_TAB_H_
      8 struct func_tab {
      9 	char f_char;
     10 	int (*f_funct) __P((void));
     11 };
     12 
     13 extern struct func_tab cmdlist[];
     14 
     15 struct ext_func_tab {
     16 	char *ef_txt;
     17 	int (*ef_funct) __P((void));
     18 };
     19 
     20 extern struct ext_func_tab extcmdlist[];
     21 #endif /* _DEF_FUNC_TAB_H_ */
     22