c_bitxor - Performs a bitwise exclusive OR on two input integers

SYNTAX

#include "las.h"

FUNCTION int c_bitxor (in1,in2)

     int               *in1;
     int               *in2;

PARAMETERS

in1 (input, integer )

The first integer value.

in2 (input, integer)

The second integer value.

DESCRIPTION

The c_bitxor() routine is used to perform a bitwise exclusive OR on two input integers.

RETURN VALUE

c_bitxor() returns the result of performing an exclusive OR on corresponding bits of the two input integers.