LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void cblas_zcopy ( const int  N,
const void *  X,
const int  incX,
void *  Y,
const int  incY 
)

Definition at line 11 of file cblas_zcopy.c.

13 {
14 #ifdef F77_INT
15  F77_INT F77_N=N, F77_incX=incX, F77_incY=incY;
16 #else
17  #define F77_N N
18  #define F77_incX incX
19  #define F77_incY incY
20 #endif
21  F77_zcopy( &F77_N, X, &F77_incX, Y, &F77_incY);
22 }
#define F77_N
#define F77_zcopy
Definition: cblas_f77.h:64
#define F77_incY
#define F77_incX
#define N
Definition: example_user.c:10

Here is the caller graph for this function: