]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - arithmetic/arithmetic.c
Fix merge conflicts
[bsdgames-darwin.git] / arithmetic / arithmetic.c
index 4fd8bf96446a57a7ba1190bcb2c88581780da901..743948e68703c772524a4ecac9b96c1a206ccdae 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: arithmetic.c,v 1.27 2012/06/19 05:46:08 dholland Exp $ */
+
 /*
- * Copyright (c) 1989 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1989, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Eamonn McManus of Trinity College Dublin.
  * 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) 1989 The Regents of the University of California.\n\
- All rights reserved.\n";
+__COPYRIGHT("@(#) Copyright (c) 1989, 1993\
+ The Regents of the University of California.  All rights reserved.");
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)arithmetic.c       5.5 (Berkeley) 2/27/91";
+#if 0
+static char sccsid[] = "@(#)arithmetic.c       8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: arithmetic.c,v 1.27 2012/06/19 05:46:08 dholland Exp $");
+#endif
 #endif /* not lint */
 
 /*
@@ -73,18 +75,30 @@ static char sccsid[] = "@(#)arithmetic.c    5.5 (Berkeley) 2/27/91";
  */
 
 #include <sys/types.h>
-#include <sys/signal.h>
+#include <err.h>
 #include <ctype.h>
+#include <signal.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
+#include <time.h>
+#include <unistd.h>
+
+static int     getrandom(int, int, int);
+static void    intr(int) __dead;
+static int     opnum(int);
+static void    penalise(int, int, int);
+static int     problem(void);
+static void    showstats(int);
+static void    usage(void) __dead;
 
-char keylist[] = "+-x/";
-char defaultkeys[] = "+-";
-char *keys = defaultkeys;
-int nkeys = sizeof(defaultkeys) - 1;
-int rangemax = 10;
-int nright, nwrong;
-time_t qtime;
+static const char keylist[] = "+-x/";
+static const char defaultkeys[] = "+-";
+static const char *keys = defaultkeys;
+static int nkeys = sizeof(defaultkeys) - 1;
+static int rangemax = 10;
+static int nright, nwrong;
+static time_t qtime;
 #define        NQUESTS 20
 
 /*
@@ -94,37 +108,28 @@ time_t qtime;
  * bound is 10.  After every NQUESTS questions, statistics on the performance
  * so far are printed.
  */
-void
-main(argc, argv)
-       int argc;
-       char **argv;
+int
+main(int argc, char **argv)
 {
-       extern char *optarg;
-       extern int optind;
        int ch, cnt;
-       time_t time();
-       void intr();
 
-       while ((ch = getopt(argc, argv, "r:o:")) != EOF)
+       /* Revoke setgid privileges */
+       setgid(getgid());
+
+       while ((ch = getopt(argc, argv, "r:o:")) != -1)
                switch(ch) {
                case 'o': {
-                       register char *p;
+                       const char *p;
 
                        for (p = keys = optarg; *p; ++p)
-                               if (!index(keylist, *p)) {
-                                       (void)fprintf(stderr,
-                                           "arithmetic: unknown key.\n");
-                                       exit(1);
-                               }
+                               if (!strchr(keylist, *p))
+                                       errx(1, "arithmetic: unknown key.");
                        nkeys = p - optarg;
                        break;
                }
                case 'r':
-                       if ((rangemax = atoi(optarg)) <= 0) {
-                               (void)fprintf(stderr,
-                                   "arithmetic: invalid range.\n");
-                               exit(1);
-                       }
+                       if ((rangemax = atoi(optarg)) <= 0)
+                               errx(1, "arithmetic: invalid range.");
                        break;
                case '?':
                default:
@@ -134,7 +139,7 @@ main(argc, argv)
                usage();
 
        /* Seed the random-number generator. */
-       srandom((int)time((time_t *)NULL));
+       srandom((int)time(NULL));
 
        (void)signal(SIGINT, intr);
 
@@ -143,21 +148,22 @@ main(argc, argv)
                for (cnt = NQUESTS; cnt--;)
                        if (problem() == EOF)
                                exit(0);
-               showstats();
+               showstats(0);
        }
        /* NOTREACHED */
 }
 
 /* Handle interrupt character.  Print score and exit. */
-void
-intr()
+static void
+intr(int dummy __unused)
 {
-       showstats();
+       showstats(1);
        exit(0);
 }
 
 /* Print score.  Original `arithmetic' had a delay after printing it. */
-showstats()
+static void
+showstats(int bool_sigint)
 {
        if (nright + nwrong > 0) {
                (void)printf("\n\nRights %d; Wrongs %d; Score %d%%",
@@ -166,6 +172,10 @@ showstats()
        (void)printf("\nTotal time %ld seconds; %.1f seconds per problem\n\n",
                            (long)qtime, (float)qtime / nright);
        }
+       if(!bool_sigint) {
+               (void)printf("Press RETURN to continue...\n");
+               while(!getchar()) ;
+       }
        (void)printf("\n");
 }
 
@@ -177,13 +187,15 @@ showstats()
  * answer causes the numbers in the problem to be penalised, so that they are
  * more likely to appear in subsequent problems.
  */
-problem()
+static int
+problem(void)
 {
-       register char *p;
+       char *p;
        time_t start, finish;
        int left, op, right, result;
        char line[80];
 
+       right = left = result = 0;
        op = keys[random() % nkeys];
        if (op != '/')
                right = getrandom(rangemax + 1, op, 1);
@@ -229,8 +241,8 @@ retry:
                        (void)printf("\n");
                        return(EOF);
                }
-               for (p = line; *p && isspace(*p); ++p);
-               if (!isdigit(*p)) {
+               for (p = line; *p && isspace((unsigned char)*p); ++p);
+               if (!isdigit((unsigned char)*p)) {
                        (void)printf("Please type a number.\n");
                        continue;
                }
@@ -275,8 +287,8 @@ retry:
  * penalties themselves.
  */
 
-int penalty[sizeof(keylist) - 1][2];
-struct penalty {
+static int penalty[sizeof(keylist) - 1][2];
+static struct penalty {
        int value, penalty;     /* Penalised value and its penalty. */
        struct penalty *next;
 } *penlist[sizeof(keylist) - 1][2];
@@ -288,14 +300,13 @@ struct penalty {
  * operand number `operand' (0 or 1).  If we run out of memory, we just
  * forget about the penalty (how likely is this, anyway?).
  */
-penalise(value, op, operand)
-       int value, op, operand;
+static void
+penalise(int value, int op, int operand)
 {
        struct penalty *p;
-       char *malloc();
 
        op = opnum(op);
-       if ((p = (struct penalty *)malloc((u_int)sizeof(*p))) == NULL)
+       if ((p = malloc(sizeof(*p))) == NULL)
                return;
        p->next = penlist[op][operand];
        penlist[op][operand] = p;
@@ -309,11 +320,11 @@ penalise(value, op, operand)
  * as a value, or represents a position in the penalty list.  If the latter,
  * we find the corresponding value and return that, decreasing its penalty.
  */
-getrandom(maxval, op, operand)
-       int maxval, op, operand;
+static int
+getrandom(int maxval, int op, int operand)
 {
        int value;
-       register struct penalty **pp, *p;
+       struct penalty **pp, *p;
 
        op = opnum(op);
        value = random() % (maxval + penalty[op][operand]);
@@ -348,28 +359,27 @@ getrandom(maxval, op, operand)
         * correspond to the actual sum of penalties in the list.  Provide an
         * obscure message.
         */
-       (void)fprintf(stderr, "arithmetic: bug: inconsistent penalties\n");
-       exit(1);
+       errx(1, "arithmetic: bug: inconsistent penalties.");
        /* NOTREACHED */
 }
 
 /* Return an index for the character op, which is one of [+-x/]. */
-opnum(op)
-       int op;
+static int
+opnum(int op)
 {
        char *p;
 
-       if (op == 0 || (p = index(keylist, op)) == NULL) {
-               (void)fprintf(stderr,
-                   "arithmetic: bug: op %c not in keylist %s\n", op, keylist);
-               exit(1);
-       }
+       if (op == 0 || (p = strchr(keylist, op)) == NULL)
+               errx(1, "arithmetic: bug: op %c not in keylist %s",
+                   op, keylist);
        return(p - keylist);
 }
 
 /* Print usage message and quit. */
-usage()
+static void
+usage(void)
 {
-       (void)fprintf(stderr, "usage: arithmetic [-o +-x/] [-r range]\n");
+       (void)fprintf(stderr, "Usage: %s [-o +-x/] [-r range]\n",
+               getprogname());
        exit(1);
 }