Source:NetHack 3.0.0/func tab.h

From NetHackWiki
Revision as of 04:39, 4 March 2008 by Kernigh bot (talk | contribs) (NetHack 3.0.0/func tab.h moved to Source:NetHack 3.0.0/func tab.h: Robot: moved page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to func_tab.h from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/func_tab.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

1.    /*	SCCS Id: @(#)func_tab.h	3.0	88/10/15
2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    /* func_tab.h - version 1.0.2 */
5.    
6.    #ifndef FUNC_TAB_H
7.    #define FUNC_TAB_H
8.    
9.    struct func_tab {
10.   	char f_char;
11.   	int (*f_funct)();
12.   	char *f_text;
13.   };
14.   
15.   extern const struct func_tab cmdlist[];
16.   
17.   struct ext_func_tab {
18.   	char *ef_txt, *ef_desc;
19.   	int (*ef_funct)();
20.   };
21.   
22.   extern const struct ext_func_tab extcmdlist[];
23.   
24.   #endif /* FUNC_TAB_H /**/