File: def.func_tab.h

package info (click to toggle)
bsdgames-nonfree 2.12-3
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 2,056 kB
  • ctags: 2,113
  • sloc: ansic: 29,027; sh: 1,006; makefile: 51
file content (21 lines) | stat: -rw-r--r-- 455 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*	$NetBSD: def.func_tab.h,v 1.4 1997/10/19 16:56:58 christos Exp $	*/

/*
 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
 */
#ifndef _DEF_FUNC_TAB_H_
#define _DEF_FUNC_TAB_H_
struct func_tab {
	char f_char;
	int (*f_funct) __P((void));
};

extern const struct func_tab cmdlist[];

struct ext_func_tab {
	const char *ef_txt;
	int (*ef_funct) __P((void));
};

extern const struct ext_func_tab extcmdlist[];
#endif /* _DEF_FUNC_TAB_H_ */