t_lex
static enum token t_lex(char *);
res = oexpr(t_lex(*t_wp));
res = !oexpr(t_lex(*t_wp));
if (t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL) == BOR)
return oexpr(t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL)) ||
if (t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL) == BAND)
return aexpr(t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL)) &&
return !nexpr(t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL));
if ((nn = t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL)) ==
if (t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL) != RPAREN)
nn = t_lex(nargc > 0 ? t_wp[1] : NULL);