c_bitand - Performs a bitwise AND on two input integers

SYNTAX

#include "las.h"

FUNCTION int c_bitand (in1,in2)

     int               *in1;
     int               *in2;

PARAMETERS

in1 (input, integer )

The first integer value.

in2 (input, integer)

The second integer value.

DESCRIPTION

The c_bitand() routine is used to perform a bitwise AND on two input integers.

RETURN VALUE

c_bitand() returns the result of performing a logical AND on corresponding bits of the two input integers.