14 lines
211 B
C
14 lines
211 B
C
|
|
/*************
|
||
|
|
* Header file for com_fft.c
|
||
|
|
* 2008 H. Vogt
|
||
|
|
************/
|
||
|
|
|
||
|
|
#ifndef FFT_H_INCLUDED
|
||
|
|
#define FFT_H_INCLUDED
|
||
|
|
|
||
|
|
void com_fft(wordlist *wl);
|
||
|
|
|
||
|
|
static void fftext(float*, float*, long int, int);
|
||
|
|
|
||
|
|
#endif
|