NetBSD/games/hack/def.func_tab.h

22 lines
437 B
C
Raw Normal View History

1997-10-19 20:56:41 +04:00
/* $NetBSD: def.func_tab.h,v 1.4 1997/10/19 16:56:58 christos Exp $ */
1993-08-02 21:16:36 +04:00
/*
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
*/
1997-10-19 20:56:41 +04:00
#ifndef _DEF_FUNC_TAB_H_
#define _DEF_FUNC_TAB_H_
1993-03-21 12:45:37 +03:00
struct func_tab {
char f_char;
1997-10-19 20:56:41 +04:00
int (*f_funct) __P((void));
1993-03-21 12:45:37 +03:00
};
extern struct func_tab cmdlist[];
struct ext_func_tab {
char *ef_txt;
1997-10-19 20:56:41 +04:00
int (*ef_funct) __P((void));
1993-03-21 12:45:37 +03:00
};
extern struct ext_func_tab extcmdlist[];
1997-10-19 20:56:41 +04:00
#endif /* _DEF_FUNC_TAB_H_ */