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