Home | History | Annotate | Download | only in Support

Lines Matching full:othercase

90 static char othercase(int);
714 ci = othercase(i);
898 - othercase - return the case counterpart of an alphabetic
901 othercase(int ch)
926 assert(othercase(ch) != ch); /* p_bracket() would recurse */
946 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)