summaryrefslogtreecommitdiffstats
path: root/monop/monop.c
diff options
context:
space:
mode:
authorsimonb <simonb@NetBSD.org>1999-08-21 10:40:03 +0000
committersimonb <simonb@NetBSD.org>1999-08-21 10:40:03 +0000
commite6fd9858739827671b4b260dd533f89f860a9fa7 (patch)
tree972e93ee56db748e5c589b841304a69ecc01bc25 /monop/monop.c
parentca104a29f1236b5c4ee454e8c132ed8518df7a27 (diff)
downloadbsdgames-darwin-e6fd9858739827671b4b260dd533f89f860a9fa7.tar.gz
bsdgames-darwin-e6fd9858739827671b4b260dd533f89f860a9fa7.tar.zst
bsdgames-darwin-e6fd9858739827671b4b260dd533f89f860a9fa7.zip
Convert to something resembling KNF.
Diffstat (limited to 'monop/monop.c')
-rw-r--r--monop/monop.c40
1 files changed, 21 insertions, 19 deletions
diff --git a/monop/monop.c b/monop/monop.c
index 53fd35b8..f0cf83d1 100644
--- a/monop/monop.c
+++ b/monop/monop.c
@@ -1,4 +1,4 @@
-/* $NetBSD: monop.c,v 1.5 1998/09/11 13:54:08 hubertf Exp $ */
+/* $NetBSD: monop.c,v 1.6 1999/08/21 10:40:03 simonb Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)monop.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: monop.c,v 1.5 1998/09/11 13:54:08 hubertf Exp $");
+__RCSID("$NetBSD: monop.c,v 1.6 1999/08/21 10:40:03 simonb Exp $");
#endif
#endif /* not lint */
@@ -64,10 +64,9 @@ static void do_quit __P((int));
*/
int
main(ac, av)
-int ac;
-char *av[]; {
-
-
+ int ac;
+ char *av[];
+{
srand(getpid());
if (ac > 1) {
if (!rest_f(av[1]))
@@ -97,16 +96,16 @@ do_quit(n)
{
quit();
}
+
/*
* This routine gets the names of the players
*/
static void
getplayers()
{
-
- char *sp;
- int i, j;
- char buf[257];
+ char *sp;
+ int i, j;
+ char buf[257];
blew_it:
for (;;) {
@@ -134,25 +133,28 @@ over:
for (j = i + 1; j < num_play; j++)
if (strcasecmp(name_list[i], name_list[j]) == 0) {
if (i != num_play - 1)
- printf("Hey!!! Some of those are IDENTICAL!! Let's try that again....\n");
+ printf("Hey!!! Some of those are "
+ "IDENTICAL!! Let's try that "
+ "again....\n");
else
- printf("\"done\" is a reserved word. Please try again\n");
+ printf("\"done\" is a reserved word. "
+ "Please try again\n");
for (i = 0; i < num_play; i++)
free(play[i].name);
free(play);
goto blew_it;
}
}
+
/*
* This routine figures out who goes first
*/
static void
init_players()
{
-
- int i, rl, cur_max;
- bool over = 0;
- int max_pl = 0;
+ int i, rl, cur_max;
+ bool over = 0;
+ int max_pl = 0;
again:
putchar('\n');
@@ -175,15 +177,15 @@ again:
cur_p = &play[max_pl];
printf("%s (%d) goes first\n", cur_p->name, max_pl + 1);
}
+
/*
* This routine initalizes the monopoly structures.
*/
static void
init_monops()
{
-
- MON *mp;
- int i;
+ MON *mp;
+ int i;
for (mp = mon; mp < &mon[N_MON]; mp++) {
mp->name = mp->not_m;