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
Index: T h

⟦749490b54⟧ TextFile

    Length: 988 (0x3dc)
    Types: TextFile
    Names: »hangman.h«

Derivation

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

TextFile

/*  hangman.h
 *  defines for hangman by ritcv!jxs7451
 */
#define MAXLINE 30               /* max word length */
#define WORDMAX  201000          /* number of (bytes-xx) in dictionary */
                                 /* xx is to insure that dont get EOF */
#define VERSION "v3.00(js)"      /* April 1986 */
#define DBUG   2315              /* uid with debug permission (-D option) */
#define PROMPT "guess ? "        /* std prompt */
#define WORDL  "/usr/dict/words" /* wordlist */
#define MINWORD  5               /* min word length */
#define LMINWORD 8               /* min word with -l option */
#define LLMINWORD 10             /* min word with -L option */
#define ERROR 8                  /* where error printed */

/* changing these will severly mess up the man drawing */
#define TRIES 10                 /* max number of wrong guesses */
#define HTRIES 6                 /* when -h used this is guesses */
#define ETRIES 14                /* when -e used this is guesses */