]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hangman/playgame.c
Changed deprecated curses call to new equivalent.
[bsdgames-darwin.git] / hangman / playgame.c
index 2663923ac4d714bd91d8cb66ab576b166bd7b5e4..f8f15232b6a5c1d41409fa2bf72de508bc559e5f 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: playgame.c,v 1.4 1997/10/11 01:16:36 lukem Exp $       */
+
 /*-
- * Copyright (c) 1983 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1983, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-/*static char sccsid[] = "from: @(#)playgame.c 5.3 (Berkeley) 4/8/91";*/
-static char rcsid[] = "$Id: playgame.c,v 1.2 1993/08/01 18:54:23 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)playgame.c 8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: playgame.c,v 1.4 1997/10/11 01:16:36 lukem Exp $");
+#endif
 #endif /* not lint */
 
-# include      "hangman.h"
+#include       "hangman.h"
 
 /*
  * playgame:
  *     play a game
  */
+void
 playgame()
 {
-       register bool   *bp;
+       bool *bp;
 
        getword();
        Errors = 0;
        bp = Guessed;
        while (bp < &Guessed[26])
                *bp++ = FALSE;
-       while (Errors < MAXERRS && index(Known, '-') != NULL) {
+       while (Errors < MAXERRS && strchr(Known, '-') != NULL) {
                prword();
                prdata();
                prman();