Home | History | Annotate | Download | only in Support

Lines Matching full:othercase

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