Difference between revisions of "Source:NetHack 1.4f/func tab.h"

From NetHackWiki
Jump to navigation Jump to search
m (Automated source code upload)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Below is the full text to '''func_tab.h''' from the [[NetHack 1.4f source code|source code]] of [[NetHack 1.4f]]. To link to a particular line, write [[NetHack 1.4f/func_tab.h#line123|<nowiki>[[NetHack 1.4f/func_tab.h#line123]]</nowiki>]], for example.
+
The source code file '''func_tab.h''' in [[NetHack 1.4f source code|NetHack 1.4f]] is unchanged from [[NetHack 1.3d/func_tab.h]].
 
+
[[Category:NetHack 1.4f source code]]
'''Warning!''' This is the source code from an old release. For the latest release, see [[Source code]]
 
 
 
{{CWI}}
 
<span id="line1">1.    /* SCCS Id: @(#)func_tab.h 1.3 87/07/14</span>
 
<span id="line2">2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */</span>
 
<span id="line3">3.    /* func_tab.h - version 1.0.2 */</span>
 
<span id="line4">4.    </span>
 
<span id="line5">5.    struct func_tab {</span>
 
<span id="line6">6.    char f_char;</span>
 
<span id="line7">7.    int (*f_funct)();</span>
 
<span id="line8">8.    char *f_text;</span>
 
<span id="line9">9.    };</span>
 
<span id="line10">10.  </span>
 
<span id="line11">11.  extern struct func_tab cmdlist[];</span>
 
<span id="line12">12.  </span>
 
<span id="line13">13.  struct ext_func_tab {</span>
 
<span id="line14">14.  char *ef_txt, *ef_desc;</span>
 
<span id="line15">15.  int (*ef_funct)();</span>
 
<span id="line16">16.  };</span>
 
<span id="line17">17.  </span>
 
<span id="line18">18.  extern struct ext_func_tab extcmdlist[];</span>
 
[[Category:NetHack 1.4f source code|func_tab.h]]
 

Latest revision as of 01:01, 4 March 2008

The source code file func_tab.h in NetHack 1.4f is unchanged from NetHack 1.3d/func_tab.h.