]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - quiz/quiz.c
Fix markup
[bsdgames-darwin.git] / quiz / quiz.c
index 5aca0ac38b6e307952960ceb1c2344c448f9bc63..545c706871c7a194cd0fadb02880e30ea8101a17 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: quiz.c,v 1.11 1997/07/06 11:19:16 mycroft Exp $        */
+/*     $NetBSD: quiz.c,v 1.23 2008/07/20 01:03:22 lukem Exp $  */
 
 /*-
  * Copyright (c) 1991, 1993
  * 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
-static char copyright[] =
-"@(#) Copyright (c) 1991, 1993\n\
-       The Regents of the University of California.  All rights reserved.\n";
+__COPYRIGHT("@(#) Copyright (c) 1991, 1993\
+ The Regents of the University of California.  All rights reserved.");
 #endif /* not lint */
 
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)quiz.c     8.3 (Berkeley) 5/4/95";
 #else
-static char rcsid[] = "$NetBSD: quiz.c,v 1.11 1997/07/06 11:19:16 mycroft Exp $";
+__RCSID("$NetBSD: quiz.c,v 1.23 2008/07/20 01:03:22 lukem Exp $");
 #endif
 #endif /* not lint */
 
@@ -58,7 +54,6 @@ static char rcsid[] = "$NetBSD: quiz.c,v 1.11 1997/07/06 11:19:16 mycroft Exp $"
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <ctype.h>
 #include <err.h>
 #include <time.h>
 #include <unistd.h>
@@ -69,26 +64,30 @@ static QE qlist;
 static int catone, cattwo, tflag;
 static u_int qsize;
 
-char   *appdstr __P((char *, char *, size_t));
-void    downcase __P((char *));
-void    get_cats __P((char *, char *));
-void    get_file __P((char *));
-char   *next_cat __P((char *));
-void    quiz __P((void));
-void    score __P((u_int, u_int, u_int));
-void    show_index __P((void));
-void    usage __P((void));
+char   *appdstr(char *, const char *, size_t);
+void    downcase(char *);
+void    get_cats(char *, char *);
+void    get_file(const char *);
+int     main(int, char *[]);
+const char     *next_cat(const char *);
+void    quiz(void);
+void    score(u_int, u_int, u_int);
+void    show_index(void);
+void    usage(void) __dead;
 
 int
 main(argc, argv)
        int argc;
        char *argv[];
 {
-       register int ch;
-       char *indexfile;
+       int ch;
+       const char *indexfile;
+
+       /* Revoke setgid privileges */
+       setgid(getgid());
 
        indexfile = _PATH_QUIZIDX;
-       while ((ch = getopt(argc, argv, "i:t")) != EOF)
+       while ((ch = getopt(argc, argv, "i:t")) != -1)
                switch(ch) {
                case 'i':
                        indexfile = optarg;
@@ -121,10 +120,10 @@ main(argc, argv)
 
 void
 get_file(file)
-       char *file;
+       const char *file;
 {
-       register FILE *fp;
-       register QE *qp;
+       FILE *fp;
+       QE *qp;
        size_t len;
        char *lp;
 
@@ -139,15 +138,18 @@ get_file(file)
        qp = &qlist;
        qsize = 0;
        while ((lp = fgetln(fp, &len)) != NULL) {
-               lp[--len] = '\0';
+               if (lp[len - 1] == '\n')
+                       lp[--len] = '\0';
                if (qp->q_text && qp->q_text[strlen(qp->q_text) - 1] == '\\')
                        qp->q_text = appdstr(qp->q_text, lp, len);
                else {
                        if ((qp->q_next = malloc(sizeof(QE))) == NULL)
-                               err(1, NULL);
+                               errx(1, "malloc");
                        qp = qp->q_next;
-                       if ((qp->q_text = strdup(lp)) == NULL)
-                               err(1, NULL);
+                       if ((qp->q_text = malloc(len + 1)) == NULL)
+                               errx(1, "malloc");
+                       strncpy(qp->q_text, lp, len);
+                       qp->q_text[len] = '\0';
                        qp->q_asked = qp->q_answered = FALSE;
                        qp->q_next = NULL;
                        ++qsize;
@@ -159,18 +161,25 @@ get_file(file)
 void
 show_index()
 {
-       register QE *qp;
-       register char *p, *s;
+       QE *qp;
+       const char *p, *s;
        FILE *pf;
+       const char *pager;
 
-       if ((pf = popen(_PATH_PAGER, "w")) == NULL)
-               err(1, "%s", _PATH_PAGER);
+       if (!isatty(1))
+               pager = "cat";
+       else {
+               if (!(pager = getenv("PAGER")) || (*pager == 0))
+                       pager = _PATH_PAGER;
+       }
+       if ((pf = popen(pager, "w")) == NULL)
+               err(1, "%s", pager);
        (void)fprintf(pf, "Subjects:\n\n");
        for (qp = qlist.q_next; qp; qp = qp->q_next) {
                for (s = next_cat(qp->q_text); s; s = next_cat(s)) {
                        if (!rxp_compile(s))
                                errx(1, "%s", rxperr);
-                       if (p = rxp_expand())
+                       if ((p = rxp_expand()) != NULL)
                                (void)fprintf(pf, "%s ", p);
                }
                (void)fprintf(pf, "\n");
@@ -186,9 +195,9 @@ void
 get_cats(cat1, cat2)
        char *cat1, *cat2;
 {
-       register QE *qp;
+       QE *qp;
        int i;
-       char *s;
+       const char *s;
 
        downcase(cat1);
        downcase(cat2);
@@ -218,12 +227,13 @@ get_cats(cat1, cat2)
 void
 quiz()
 {
-       register QE *qp;
-       register int i;
+       QE *qp;
+       int i;
        size_t len;
        u_int guesses, rights, wrongs;
        int next;
-       char *answer, *s, *t, question[LINE_SZ];
+       char *answer, *t, question[LINE_SZ];
+       const char *s;
 
        srandom(time(NULL));
        guesses = rights = wrongs = 0;
@@ -271,7 +281,8 @@ quiz()
                qp->q_asked = TRUE;
                (void)printf("%s?\n", question);
                for (;; ++guesses) {
-                       if ((answer = fgetln(stdin, &len)) == NULL) {
+                       if ((answer = fgetln(stdin, &len)) == NULL ||
+                           answer[len - 1] != '\n') {
                                score(rights, wrongs, guesses);
                                exit(0);
                        }
@@ -296,9 +307,9 @@ quiz()
        score(rights, wrongs, guesses);
 }
 
-char *
+const char *
 next_cat(s)
-       register char * s;
+       const char *    s;
 {
        int esc;
 
@@ -323,21 +334,24 @@ next_cat(s)
 char *
 appdstr(s, tp, len)
        char *s;
-       register char *tp;
+       const char *tp;
        size_t len;
 {
-       register char *mp, *sp;
-       register int ch;
+       char *mp;
+       const char *sp;
+       int ch;
        char *m;
 
        if ((m = malloc(strlen(s) + len + 1)) == NULL)
-               err(1, NULL);
-       for (mp = m, sp = s; *mp++ = *sp++;);
+               errx(1, "malloc");
+       for (mp = m, sp = s; (*mp++ = *sp++) != '\0'; )
+               ;
        --mp;
        if (*(mp - 1) == '\\')
                --mp;
 
-       while ((ch = *mp++ = *tp++) && ch != '\n');
+       while ((ch = *mp++ = *tp++) && ch != '\n')
+               ;
        *mp = '\0';
 
        free(s);
@@ -356,11 +370,11 @@ score(r, w, g)
 
 void
 downcase(p)
-       register char *p;
+       char *p;
 {
-       register int ch;
+       int ch;
 
-       for (; ch = *p; ++p)
+       for (; (ch = *p) != '\0'; ++p)
                if (isascii(ch) && isupper(ch))
                        *p = tolower(ch);
 }