DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦1ea2b13e2⟧ TextFile

    Length: 360 (0x168)
    Types: TextFile
    Names: »func_tab.h«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Nethack/func_tab.h« 

TextFile

/*	SCCS Id: @(#)func_tab.h	1.4	87/08/08
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* func_tab.h - version 1.0.2 */

struct func_tab {
	char f_char;
	int (*f_funct)();
	char *f_text;
};

extern struct func_tab cmdlist[];

struct ext_func_tab {
	char *ef_txt, *ef_desc;
	int (*ef_funct)();
};

extern struct ext_func_tab extcmdlist[];