repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sbin/hammer: Fix hammer(8)
[dragonfly.git]
/
games
/
hack
/
def.func_tab.h
blob
ceb952c52e97511a4660c65517da895556eaa511
1
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2
/* def.func_tab.h - version 1.0.2 */
3
/* $DragonFly: src/games/hack/def.func_tab.h,v 1.3 2006/08/21 19:45:32 pavalos Exp $ */
4
5
struct
func_tab
{
6
char
f_char
;
7
int
(*
f_funct
)(
void
);
8
};
9
10
struct
ext_func_tab
{
11
const char
*
ef_txt
;
12
int
(*
ef_funct
)(
void
);
13
};