mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
22 lines
661 B
C
22 lines
661 B
C
/***************************************************************************
|
|
*cr
|
|
*cr (C) Copyright 2007 The Board of Trustees of the
|
|
*cr University of Illinois
|
|
*cr All Rights Reserved
|
|
*cr
|
|
***************************************************************************/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void inputData(char* fName, int* _numK, int* _numX,
|
|
float** kx, float** ky, float** kz,
|
|
float** x, float** y, float** z,
|
|
float** phiR, float** phiI);
|
|
|
|
void outputData(char* fName, float* outR, float* outI, int numX);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|