Bitwise logical `and' of two ints, complementing the first
When integers are viewed in their two's complement representation,
The guard for
Function:
(defun logandc1 (i j) (declare (xargs :guard (and (integerp i) (integerp j)))) (logand (lognot i) j))