]> granicus.if.org Git - nethack/commitdiff
comment bit (trunk only)
authornethack.allison <nethack.allison>
Sun, 22 Oct 2006 17:45:12 +0000 (17:45 +0000)
committernethack.allison <nethack.allison>
Sun, 22 Oct 2006 17:45:12 +0000 (17:45 +0000)
src/hacklib.c

index 9fd49d71046c6de571addce45dc2229b128f6232..1ca66c89c2b07f9a7c2f850ffef80ab87a43e260 100644 (file)
@@ -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 (;;) {