c_bitor - Performs a bitwise inclusive OR on two input integers

SYNTAX

#include "las.h"

FUNCTION int c_bitor (in1,in2)

     int               *in1;
     int               *in2;

PARAMETERS

in1 (input, integer )

The first integer value.

in2 (input, integer)

The second integer value.

DESCRIPTION

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

RETURN VALUE

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