1 /* uleq.c - "unsigned" lexical compare */
3 static char ident[] = "@(#)$Id: uleq.c,v 1.7 1992/12/15 00:20:22 jromine Exp $";
27 c = (isalpha(c) && isupper(c)) ? tolower(c) : c;
28 mask = (isalpha(mask) && isupper(mask)) ? tolower(mask) : mask;
31 mask = (isalpha(c) && isalpha(*c2)) ? TO_LOWER : NO_MASK;
32 if ((c | mask) != (*c2 | mask))