#include "worgen.h"
FUNCTION c_pxinxd (in, val, ns, index, dtype)
long *in; long *val; long *ns; long *index; long *dtype;
Input array.
Value to elements in array to be skipped. Must be same type as in.
Number of elements in the input array.
Index into array of first value not equal to val.
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): real*4 data
c_pxinxd() searches an array to find the first value in the array which is not equal to the value specified in the variable val.
c_pxinxd() returns
E_SUCC --> successful completion TYPERR --> invalid type specified