bin/test/test.c
114
{"<", STRLT, BINOP},
bin/test/test.c
115
{"=", STREQ, BINOP},
bin/test/test.c
116
{">", STRGT, BINOP},
bin/test/test.c
120
{"!=", STRNE, BINOP},
bin/test/test.c
124
{"ef", FILEQ, BINOP},
bin/test/test.c
125
{"eq", INTEQ, BINOP},
bin/test/test.c
126
{"ge", INTGE, BINOP},
bin/test/test.c
127
{"gt", INTGT, BINOP},
bin/test/test.c
128
{"le", INTLE, BINOP},
bin/test/test.c
129
{"lt", INTLT, BINOP},
bin/test/test.c
130
{"ne", INTNE, BINOP},
bin/test/test.c
131
{"nt", FILNT, BINOP},
bin/test/test.c
132
{"ot", FILOT, BINOP},
bin/test/test.c
375
if (op != NULL && op->op_type == BINOP)
bin/test/test.c
480
if (t_lex(t_wp[1]), t_wp_op && t_wp_op->op_type == BINOP) {
bin/test/test.c
846
return op->op_type == BINOP && (t[0] != ')' || t[1] != '\0');