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