* Added -m option to hangman to set MINLEN. Closes: #129998

git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5180 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
2002-01-20 00:26:56 +00:00
parent 0a887df528
commit 259231e07c
6 changed files with 60 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
/* $NetBSD: hangman.h,v 1.7 1998/09/11 13:42:03 hubertf Exp $ */
/* $NetBSD: hangman.h,v 1.10 1999/09/17 20:45:49 jsm Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -73,18 +73,21 @@ extern char Word[], Known[];
extern const char *const Noose_pict[];
extern int Errors, Wordnum;
extern unsigned int Minlen;
extern double Average;
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));