]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - battlestar/misc.c
Make spacing nicer and add explicit NULL initializers.
[bsdgames-darwin.git] / battlestar / misc.c
index 2748cf80280266976db5593ac7f51f83678c5744..89d636acb67878e6842b529dda748b89ba5d17c8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: misc.c,v 1.5 1997/10/10 11:40:04 lukem Exp $   */
+/*     $NetBSD: misc.c,v 1.7 1999/02/10 01:36:50 hubertf Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)misc.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: misc.c,v 1.5 1997/10/10 11:40:04 lukem Exp $");
+__RCSID("$NetBSD: misc.c,v 1.7 1999/02/10 01:36:50 hubertf Exp $");
 #endif
-#endif /* not lint */
+#endif                         /* not lint */
 
 #include "extern.h"
 
 int
 card(array, size)              /* for beenthere, injuries */
-       char *array;
-       int size;
+       const char   *array;
+       int     size;
 {
-       char *end = array + size;
-       int i = 0;
+       const char   *end = array + size;
+       int     i = 0;
 
        while (array < end)
                if (*array++)
@@ -60,12 +60,12 @@ card(array, size)           /* for beenthere, injuries */
 
 int
 ucard(array)
-       unsigned int *array;
+       const unsigned int *array;
 {
-       int j = 0, n;
+       int     j = 0, n;
 
        for (n = 0; n < NUMOFOBJECTS; n++)
                if (testbit(array, n))
-                           j++;
+                       j++;
        return (j);
 }