Files
nethack/include/func_tab.h
2015-02-27 21:25:00 -05:00

26 lines
648 B
C

/* NetHack 3.5 func_tab.h $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */
/* NetHack 3.5 func_tab.h $Date: 2009/05/06 10:44:44 $ $Revision: 1.4 $ */
/* SCCS Id: @(#)func_tab.h 3.5 1992/04/03 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
#ifndef FUNC_TAB_H
#define FUNC_TAB_H
struct func_tab {
char f_char;
boolean can_if_buried;
int NDECL((*f_funct));
const char *f_text;
};
struct ext_func_tab {
const char *ef_txt, *ef_desc;
int NDECL((*ef_funct));
boolean can_if_buried;
};
extern struct ext_func_tab extcmdlist[];
#endif /* FUNC_TAB_H */