#include "worgen.h"
FUNCTION c_pxlor (in, map, out, ns, dtype)
long *in; long *map; long *out; long *ns; long *dtype;
Input array to be "ored". Must be same type as map.
Input array to be "ored". Must be same type as in.
Output array to hold result. Must be same type as in.
Number of elements in the input arrays.
Integer value representing the type of data. Legal values include:
= EBYTE(1): unsigned byte data = EWORD(2): signed two byte data = ELONG(3): signed four byte data = EREAL(4): four byte floating point data
c_pxlor() performs a logial OR on each element of two input arrays. The input arrays and output array must be of the same type.
c_pxlor() returns
E_SUCC --> successful completion TYPERR --> invalid type specified