LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
cblas_cswap.c
Go to the documentation of this file.
1/*
2 * cblas_cswap.c
3 *
4 * The program is a C interface to cswap.
5 *
6 * Written by Keita Teranishi. 2/11/1998
7 *
8 */
9#include "cblas.h"
10#include "cblas_f77.h"
11void API_SUFFIX(cblas_cswap)( const CBLAS_INT N, void *X, const CBLAS_INT incX, void *Y,
12 const CBLAS_INT incY)
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_cswap( &F77_N, X, &F77_incX, Y, &F77_incY);
22}
#define API_SUFFIX(a)
Definition cblas.h:57
#define CBLAS_INT
Definition cblas.h:24
#define F77_incX
#define F77_incY
void API_SUFFIX() cblas_cswap(const CBLAS_INT N, void *X, const CBLAS_INT incX, void *Y, const CBLAS_INT incY)
Definition cblas_cswap.c:11
#define F77_N
#define F77_INT
#define F77_cswap(...)
Definition cblas_f77.h:264