]>
diplodocus.org Git - nmh/blob - docs/historical/mh-6.8.5/sbr/uprf.c
1 /* uprf.c - "unsigned" lexical prefix */
3 static char ident
[] = "@(#)$Id: uprf.c,v 1.8 1992/12/15 00:20:22 jromine Exp $";
17 if (c1
== 0 || c2
== 0)
25 c
= (isalpha(c
) && isupper(c
)) ? tolower(c
) : c
;
26 mask
= (isalpha(mask
) && isupper(mask
)) ? tolower(mask
) : mask
;
29 mask
= (isalpha(c
) && isalpha(*c1
)) ? TO_LOWER
: NO_MASK
;
30 if ((c
| mask
) != (*c1
| mask
))