From c1b97d3a1a098e5423c5027b4476f462fedfd6f7 Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Sun, 22 Oct 2006 17:45:12 +0000 Subject: [PATCH] comment bit (trunk only) --- src/hacklib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hacklib.c b/src/hacklib.c index 9fd49d710..1ca66c89c 100644 --- a/src/hacklib.c +++ b/src/hacklib.c @@ -763,9 +763,9 @@ const nhwchar *src; } int -nhwcmp(s1, s2) /* case insensitive counted string comparison */ +nhwcmp(s1, s2) /* case sensitive counted comparison */ register const nhwchar *s1, *s2; -{ /*{ aka strncasecmp }*/ +{ register nhwchar t1, t2; for (;;) { @@ -799,7 +799,7 @@ int nhwstrcmp(s1, s2) register const nhwchar *s1; const char *s2; -{ /*{ aka strncasecmp }*/ +{ register nhwchar t1, t2; for (;;) {