3 * uprf.c -- "unsigned" lexical prefix
15 uprf (char *c1, char *c2)
27 c = (isalpha(c) && isupper(c)) ? tolower(c) : c;
28 mask = (isalpha(mask) && isupper(mask)) ? tolower(mask) : mask;
31 mask = (isalpha(c) && isalpha(*c1)) ? TO_LOWER : NO_MASK;
32 if ((c | mask) != (*c1 | mask))