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

Definition at line 18 of file c_zblas1.c.

20 {
21  cblas_zcopy(*N, X, *incX, Y, *incY);
22  return;
23 }
void cblas_zcopy(const int N, const void *X, const int incX, void *Y, const int incY)
Definition: cblas_zcopy.c:11
#define N
Definition: example_user.c:10

Here is the call graph for this function: