annotate fft/cross/Cross.h @ 39:c1ec7564ccac

Upstream COPYING file
author Chris Cannam
date Wed, 11 May 2016 09:43:00 +0100
parents b4ab69bdb4c8
children
rev   line source
Chris@5 1
Chris@5 2 #ifndef CROSS_H
Chris@5 3 #define CROSS_H
Chris@5 4
Chris@5 5 #ifdef __cplusplus
Chris@5 6 extern "C" {
Chris@5 7 #endif
Chris@5 8
Chris@5 9 extern void fftCross(unsigned int n, int inverse,
Chris@5 10 const double *ri, const double *ii,
Chris@5 11 double *ro, double *io);
Chris@5 12
Chris@5 13 #ifdef __cplusplus
Chris@5 14 }
Chris@5 15 #endif
Chris@5 16
Chris@5 17 #endif