]> diplodocus.org Git - nmh/blobdiff - sbr/uprf.c
Don't need to cast to `char *' for free(3) these days.
[nmh] / sbr / uprf.c
index dedb0e5bbf988279d53c4632b3ce102424cf962e..179955a3a3cd85dda8569e235b93e240d816ec14 100644 (file)
@@ -2,8 +2,6 @@
 /*
  * uprf.c -- "unsigned" lexical prefix
  *
- * $Id$
- *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
  * complete copyright information.
@@ -11,12 +9,9 @@
 
 #include <h/mh.h>
 
-#define TO_LOWER 040
-#define NO_MASK  000
-
 
 int
-uprf (char *c1, char *c2)
+uprf (const char *c1, const char *c2)
 {
     int c, mask;
 
@@ -25,19 +20,13 @@ uprf (char *c1, char *c2)
 
     while ((c = *c2++))
     {
-#ifdef LOCALE
        c &= 0xff;
        mask = *c1 & 0xff;
-       c = (isalpha(c) && isupper(c)) ? tolower(c) : c;
-       mask = (isalpha(mask) && isupper(mask)) ? tolower(mask) : mask;
+       c = tolower(c);
+       mask = tolower(mask);
        if (c != mask)
-#else
-       mask = (isalpha(c) && isalpha(*c1)) ?  TO_LOWER : NO_MASK;
-       if ((c | mask) != (*c1 | mask))
-#endif
            return 0;
-       else
-           c1++;
+        c1++;
     }
     return 1;
 }