-/* $NetBSD: print.c,v 1.12 2007/12/15 19:44:42 perry Exp $ */
+/* $NetBSD: print.c,v 1.18 2011/08/21 08:50:08 christos Exp $ */
/*
* Copyright (c) 1982, 1993
#if 0
static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: print.c,v 1.12 2007/12/15 19:44:42 perry Exp $");
+__RCSID("$NetBSD: print.c,v 1.18 2011/08/21 08:50:08 christos Exp $");
#endif
#endif /* not lint */
-# include "mille.h"
+#include "mille.h"
/*
* @(#)print.c 1.1 (Berkeley) 4/1/82
*/
-# define COMP_STRT 20
-# define CARD_STRT 2
+#define COMP_STRT 20
+#define CARD_STRT 2
+
+static void show_card(int, int, CARD, CARD *);
+static void show_score(int, int, int, int *);
void
-prboard()
+prboard(void)
{
PLAY *pp;
int i, j, k, temp;
* show_card:
* Show the given card if it is different from the last one shown
*/
-void
-show_card(y, x, c, lc)
- int y, x;
- CARD c, *lc;
+static void
+show_card(int y, int x, CARD c, CARD *lc)
{
if (c == *lc)
return;
*lc = c;
}
-static char Score_fmt[] = "%4d";
+static const char Score_fmt[] = "%4d";
void
-prscore(for_real)
-#ifdef EXTRAP
- bool for_real;
-#else
- bool for_real __unused;
-#endif
+prscore(bool for_real)
{
PLAY *pp;
int x;
* Show a score value if it is different from the last time we
* showed it.
*/
-void
-show_score(y, x, s, ls)
- int y, x;
- int s, *ls;
+static void
+show_score(int y, int x, int s, int *ls)
{
if (s == *ls)
return;