9 lines
165 B
C
9 lines
165 B
C
#ifndef LUT_H
|
|
#define LUT_H
|
|
|
|
#include "fft_config.h"
|
|
|
|
value_type lookup_sin(int layer, int element);
|
|
value_type lookup_cos(int layer, int element);
|
|
|
|
#endif // LUT_H
|