X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fuprf.c;h=ea0964edb7da5a1445af19c760272bfa2b81b320;hp=b3c81ff0ed46391e65af5ba97e8a0536c79fbe02;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=5dd6771b28c257af405d7248639ed0e3bcdce38b diff --git a/sbr/uprf.c b/sbr/uprf.c index b3c81ff..ea0964e 100644 --- a/sbr/uprf.c +++ b/sbr/uprf.c @@ -1,11 +1,10 @@ - /* - * uprf.c -- "unsigned" lexical prefix - * - * 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. - */ +** uprf.c -- "unsigned" lexical prefix +** +** 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. +*/ #include @@ -16,26 +15,25 @@ int uprf (char *c1, char *c2) { - int c, mask; + int c, mask; - if (!(c1 && c2)) - return 0; + if (!(c1 && c2)) + return 0; - while ((c = *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; - if (c != mask) + c &= 0xff; + mask = *c1 & 0xff; + c = (isalpha(c) && isupper(c)) ? tolower(c) : c; + mask = (isalpha(mask) && isupper(mask)) ? tolower(mask) : mask; + if (c != mask) #else - mask = (isalpha(c) && isalpha(*c1)) ? TO_LOWER : NO_MASK; - if ((c | mask) != (*c1 | mask)) + mask = (isalpha(c) && isalpha(*c1)) ? TO_LOWER : NO_MASK; + if ((c | mask) != (*c1 | mask)) #endif - return 0; - else - c1++; - } - return 1; + return 0; + else + c1++; + } + return 1; }