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