ASCII_CHAR
if (checkkey() != -1 && ASCII_CHAR(getkey()) == K_INTR) {
if (ASCII_CHAR (getkey ()) == 27)
tmp = ASCII_CHAR (getkey ());
while ((c = ASCII_CHAR (getkey ())) != '\n' && c != '\r')
while ((c = ASCII_CHAR (getkey ())) != '\n' && c != '\r')
if (checkkey () != -1 && ASCII_CHAR (getkey ()) == '\e')
c = ASCII_CHAR (getkey ());
*compilep = (unsigned char)ASCII_CHAR;
*compilep = (unsigned char)ASCII_CHAR;
} else if ((int)*regexp == (int)ASCII_CHAR) {
case ASCII_CHAR: /* single ASCII char */
case ASCII_CHAR|ZERO_OR_MORE: /* char* */
case ASCII_CHAR|ONE_OR_MORE: /* char+ */
case ASCII_CHAR|COUNT: /* char{min_count,max_count} */