]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/hack.rumors.c
Integrate Warp Kit into the NetBSD build
[bsdgames-darwin.git] / hack / hack.rumors.c
index 0a0077c229d7a4ed3cac2d5039012f29ed59c1bd..757c5a63502dc40c276a73472e2abf57586a4316 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.rumors.c,v 1.6 2009/06/07 18:30:39 dholland Exp $ */
+/*     $NetBSD: hack.rumors.c,v 1.9 2011/08/06 20:18:26 dholland Exp $ */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hack.rumors.c,v 1.6 2009/06/07 18:30:39 dholland Exp $");
+__RCSID("$NetBSD: hack.rumors.c,v 1.9 2011/08/06 20:18:26 dholland Exp $");
 #endif                         /* not lint */
 
 #include "hack.h"      /* for RUMORFILE and BSD (strchr) */
 #include "extern.h"
 #define        CHARSZ  8               /* number of bits in a char */
-int             n_rumors = 0;
-int             n_used_rumors = -1;
-char           *usedbits;
 
-void
+static int n_rumors = 0;
+static int n_used_rumors = -1;
+static char *usedbits;
+
+static void init_rumors(FILE *);
+static int skipline(FILE *);
+static void outline(FILE *);
+static int used(int);
+
+static void
 init_rumors(FILE *rumf)
 {
        int             i;
@@ -82,12 +88,12 @@ init_rumors(FILE *rumf)
                n_rumors++;
        rewind(rumf);
        i = n_rumors / CHARSZ;
-       usedbits = (char *) alloc((unsigned) (i + 1));
+       usedbits = alloc(i + 1);
        for (; i >= 0; i--)
                usedbits[i] = 0;
 }
 
-int
+static int
 skipline(FILE *rumf)
 {
        char            line[COLNO];
@@ -99,7 +105,7 @@ skipline(FILE *rumf)
        }
 }
 
-void
+static void
 outline(FILE *rumf)
 {
        char            line[COLNO];
@@ -109,7 +115,7 @@ outline(FILE *rumf)
        if ((ep = strchr(line, '\n')) != 0)
                *ep = 0;
        pline("This cookie has a scrap of paper inside! It reads: ");
-       pline(line);
+       pline("%s", line);
 }
 
 void
@@ -139,7 +145,7 @@ none:
        (void) fclose(rumf);
 }
 
-int
+static int
 used(int i)
 {
        return (usedbits[i / CHARSZ] & (1 << (i % CHARSZ)));