summaryrefslogtreecommitdiffstats
path: root/cribbage/io.c
diff options
context:
space:
mode:
authorpk <pk@NetBSD.org>1997-05-17 19:24:44 +0000
committerpk <pk@NetBSD.org>1997-05-17 19:24:44 +0000
commitb218620de93fbebcfba8ec74b22d33986ba70b3f (patch)
treebabfc29746c0627a1f08d231c120eac9691c18db /cribbage/io.c
parent531a2505768cab68a9b91fb45959ed2be5a2fc33 (diff)
downloadbsdgames-darwin-b218620de93fbebcfba8ec74b22d33986ba70b3f.tar.gz
bsdgames-darwin-b218620de93fbebcfba8ec74b22d33986ba70b3f.tar.zst
bsdgames-darwin-b218620de93fbebcfba8ec74b22d33986ba70b3f.zip
NULL => 0 (Arne Juul; PR#3629)
Diffstat (limited to 'cribbage/io.c')
-rw-r--r--cribbage/io.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/cribbage/io.c b/cribbage/io.c
index bdc2d35c..a1ebe3dc 100644
--- a/cribbage/io.c
+++ b/cribbage/io.c
@@ -1,4 +1,4 @@
-/* $NetBSD: io.c,v 1.7 1995/03/21 15:08:53 cgd Exp $ */
+/* $NetBSD: io.c,v 1.8 1997/05/17 19:26:18 pk Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: io.c,v 1.7 1995/03/21 15:08:53 cgd Exp $";
+static char rcsid[] = "$NetBSD: io.c,v 1.8 1997/05/17 19:26:18 pk Exp $";
#endif
#endif /* not lint */
@@ -256,10 +256,10 @@ incard(crd)
if (!(line = getline()))
goto gotit;
p = p1 = line;
- while (*p1 != ' ' && *p1 != NULL)
+ while (*p1 != ' ' && *p1 != '\0')
++p1;
- *p1++ = NULL;
- if (*p == NULL)
+ *p1++ = '\0';
+ if (*p == '\0')
goto gotit;
/* IMPORTANT: no real card has 2 char first name */
@@ -295,17 +295,17 @@ incard(crd)
if (rnk == EMPTY)
goto gotit;
p = p1;
- while (*p1 != ' ' && *p1 != NULL)
+ while (*p1 != ' ' && *p1 != '\0')
++p1;
- *p1++ = NULL;
- if (*p == NULL)
+ *p1++ = '\0';
+ if (*p == '\0')
goto gotit;
if (!strcmp("OF", p)) {
p = p1;
- while (*p1 != ' ' && *p1 != NULL)
+ while (*p1 != ' ' && *p1 != '\0')
++p1;
- *p1++ = NULL;
- if (*p == NULL)
+ *p1++ = '\0';
+ if (*p == '\0')
goto gotit;
}
sut = EMPTY;
@@ -354,7 +354,7 @@ number(lo, hi, prompt)
for (sum = 0;;) {
msg(prompt);
- if (!(p = getline()) || *p == NULL) {
+ if (!(p = getline()) || *p == '\0') {
msg(quiet ? "Not a number" :
"That doesn't look like a number");
continue;
@@ -369,7 +369,7 @@ number(lo, hi, prompt)
++p;
}
- if (*p != ' ' && *p != '\t' && *p != NULL)
+ if (*p != ' ' && *p != '\t' && *p != '\0')
sum = lo - 1;
if (sum >= lo && sum <= hi)
break;