]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hangman/main.c
Simplify, little KNF
[bsdgames-darwin.git] / hangman / main.c
index 47bffb5a99a885e0fe6515730039c9db500b5eb4..d7c257859514daff43447a77a35d0342e57b67e7 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: main.c,v 1.15 2012/06/19 05:45:00 dholland Exp $       */
+
 /*
- * Copyright (c) 1983 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
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1983 Regents of the University of California.\n\
- All rights reserved.\n";
+__COPYRIGHT("@(#) Copyright (c) 1983, 1993\
+ The Regents of the University of California.  All rights reserved.");
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)main.c     5.4 (Berkeley) 2/28/91";
+#if 0
+static char sccsid[] = "@(#)main.c     8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: main.c,v 1.15 2012/06/19 05:45:00 dholland Exp $");
+#endif
 #endif /* not lint */
 
-# include      "hangman.h"
+#include       <err.h>
+#include       "hangman.h"
 
 /*
  * This game written by Ken Arnold.
  */
-main()
+int
+main(int argc, char *argv[])
 {
-       void die();
+       int ch;
+
+       /* Revoke setgid privileges */
+       setgid(getgid());
 
-       initscr();
+       while ((ch = getopt(argc, argv, "d:m:")) != -1) {
+               switch (ch) {
+               case 'd':
+                       Dict_name = optarg;
+                       break;
+               case 'm':
+                       Minlen = atoi(optarg);
+                       if (Minlen < 2)
+                               errx(1, "minimum word length too short");
+                       break;
+               case '?':
+               default:
+                       (void)fprintf(stderr, "usage: hangman [-d wordlist] [-m minlen]\n");
+                       exit(1);
+               }
+       }
+
+       if (!initscr())
+               errx(0, "couldn't initialize screen");
        signal(SIGINT, die);
        setup();
        for (;;) {
@@ -60,13 +85,12 @@ main()
        }
        /* NOTREACHED */
 }
-
 /*
  * die:
  *     Die properly.
  */
 void
-die()
+die(int dummy __unused)
 {
        mvcur(0, COLS - 1, LINES - 1, 0);
        endwin();