Files
harmonizer_plugin/Source/mayer_fft.h
michalcourson 720a013ff3 initial
2025-10-04 10:09:14 -04:00

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