view fft/cross/Cross.h @ 27:4fa5f3f883a2

Add native-code version for comparison
author Chris Cannam
date Wed, 07 Oct 2015 21:28:09 +0100
parents b4ab69bdb4c8
children
line wrap: on
line source

#ifndef CROSS_H
#define CROSS_H

#ifdef __cplusplus
extern "C" {
#endif

    extern void fftCross(unsigned int n, int inverse,
			 const double *ri, const double *ii,
			 double *ro, double *io);

#ifdef __cplusplus
}
#endif

#endif