Home | History | Annotate | Download | only in Support

Lines Matching full:othercase

82 static char othercase(int);
678 ci = othercase(i);
862 - othercase - return the case counterpart of an alphabetic
865 othercase(int ch)
890 assert(othercase(ch) != ch); /* p_bracket() would recurse */
910 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)