VistaIOCopy, VistaIOZero - copy or zero an array
Contents
Arguments
from, to, array
Each specifies a pointer to the first element of an array of type.
nels Specifies the number of array elements.
Description
The VistaIOCopy macro copies nels array elements (each of type type) from from to to.
The VistaIOZero macro writes zeros into nels array elements (each of type type) beginning at array.
Name
VistaIOCopy, VistaIOZero - copy or zero an array
See Also
VistaIO Version 1.2.14 19 January 1993 VistaIOCopy(3)
Syntax
#include<vistaio.h>voidVistaIOCopy(from,to,nels)type*from,*to;size_tnels;voidVistaIOZero(array,nels)type*array;size_tnels;wheretypeisanyCtype.
