9 lines
139 B
C
9 lines
139 B
C
#ifndef MAYER_H
|
|
#define MAYER_H
|
|
|
|
#define REAL float
|
|
|
|
void mayer_realfft(int n, REAL* real);
|
|
void mayer_realifft(int n, REAL* real);
|
|
|
|
#endif |