1*53851Selan# Copyright (c) 1988 The Regents of the University of California. 2*53851Selan# All rights reserved. 3*53851Selan# 4*53851Selan# This code is derived from software contributed to Berkeley by 5*53851Selan# Kenneth Almquist. 6*53851Selan# 7*53851Selan# %sccs.include.redist.sh% 8*53851Selan# 9*53851Selan# @(#)binary_op 1.2 (Berkeley) 06/03/92 10*53851Selan# 11*53851Selan 12*53851Selan 13*53851Selan# 1453835Selan# List of binary operators used by test 1553835Selan# 1653835Selan 17*53851Selan 1853835SelanOR1 -o 1 1953835SelanOR2 | 1 2053835SelanAND1 -a 2 2153835SelanAND2 & 2 2253835SelanSTREQ = 4 OP_STRING 2353835SelanSTRNE != 4 OP_STRING 2453835SelanEQ -eq 4 OP_INT 2553835SelanNE -ne 4 OP_INT 2653835SelanGT -gt 4 OP_INT 2753835SelanLT -lt 4 OP_INT 2853835SelanLE -le 4 OP_INT 2953835SelanGE -ge 4 OP_INT 3053835Selan 31