]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hangman/hangman.h
Allow minimum word length to be set on command line. Patch based on
[bsdgames-darwin.git] / hangman / hangman.h
index 10ade2a91e2836132351bd2812d032f227b20be8..eddf4fff9e54d67887856a961be60e0b4958bc68 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hangman.h,v 1.7 1998/09/11 13:42:03 hubertf Exp $      */
+/*     $NetBSD: hangman.h,v 1.11 2002/01/20 00:42:51 jsm Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -69,21 +69,25 @@ typedef struct {
 
 extern bool Guessed[];
 
-extern char Word[], Known[], *Noose_pict[];
+extern char Word[], Known[];
+extern const char *const Noose_pict[];
 
 extern int Errors, Wordnum;
+extern unsigned int Minlen;
 
 extern double Average;
 
-extern ERR_POS Err_pos[];
+extern const ERR_POS Err_pos[];
+
+extern const char *Dict_name;
 
 extern FILE *Dict;
 
 extern off_t Dict_size;
 
-void    die __P((int));
+void    die __P((int)) __attribute__((__noreturn__));
 void    endgame __P((void));
-int    main __P((void));
+int    main __P((int, char *[]));
 void   getguess __P((void));
 void   getword __P((void));
 void   playgame __P((void));