view fft/cross/Cross.h @ 15:ece8682d8293

Avoid generating browser/filesystem support with Emscripten (not needed)
author Chris Cannam
date Mon, 05 Oct 2015 14:54:12 +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