comment bit (trunk only)

This commit is contained in:
nethack.allison
2006-10-22 17:45:12 +00:00
parent 054a74d378
commit c1b97d3a1a
+3 -3
View File
@@ -763,9 +763,9 @@ const nhwchar *src;
} }
int int
nhwcmp(s1, s2) /* case insensitive counted string comparison */ nhwcmp(s1, s2) /* case sensitive counted comparison */
register const nhwchar *s1, *s2; register const nhwchar *s1, *s2;
{ /*{ aka strncasecmp }*/ {
register nhwchar t1, t2; register nhwchar t1, t2;
for (;;) { for (;;) {
@@ -799,7 +799,7 @@ int
nhwstrcmp(s1, s2) nhwstrcmp(s1, s2)
register const nhwchar *s1; register const nhwchar *s1;
const char *s2; const char *s2;
{ /*{ aka strncasecmp }*/ {
register nhwchar t1, t2; register nhwchar t1, t2;
for (;;) { for (;;) {