Jamoma API  0.6.0.a19
mayer_fft.h
1 #ifndef MAYER_H
2 #define MAYER_H
3 
4 #define REAL double
5 
6 extern "C" {
7  void mayer_realfft(int n, REAL *real);
8  void mayer_realifft(int n, REAL *real);
9  void mayer_fft(int n, REAL *real, REAL *imag);
10  void mayer_ifft(int n, REAL *real, REAL *imag);
11 }
12 
13 #endif