#ifndef fft_h #define fft_h typedef double Real; extern double FFTSquareWorstError; extern long AllocatedMemory; void InitializeFFT(long MaxFFTLength); void MulWithFFT(Real * ACoef, long ASize, Real * BCoef, long BSize, Real * CCoef); #endif