OSDN Git Service

Changed the directory structure of the utilities.
[bluetank/bluetank.git] / soft / utils / ffttool / fft.h
1
2 #ifndef FFT_H
3 #define FFT_H
4
5 void FFT(double x_real[], double x_imag[], int N);
6 void IFFT(double x_real[], double x_imag[], int N);
7
8 #endif
9