GNU Radio 3.5.3.2 C++ API
fft.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2 
3  FILE........: fft.h
4  AUTHOR......: Bruce Robertson
5  DATE CREATED: 29/11/2010
6 
7  Bridge between existing code and kiss_fft.
8 
9 \*---------------------------------------------------------------------------*/
10 
11 #ifndef __FFT__
12 #define __FFT__
13 void fft(float x[], int n, int isign);
14 
15 #endif /* __FFT__ */
16