CEXP_OP_AND
case CEXP_OP_AND:
cexp_op_t new_op = CEXP_OP_AND; /* to catch binop at start */
if ((op != CEXP_OP_AND) && (op != CEXP_OP_OR) &&
new_op = (*str == '&') ? CEXP_OP_AND : CEXP_OP_OR;