Files
2025-06-21 04:26:24 -04:00

16 lines
310 B
C

#ifndef _JAUDIO_JA_CALC_H
#define _JAUDIO_JA_CALC_H
#include "types.h"
/////////// JAUDIO MATH DEFINITIONS ///////////
// Global functions (all C++, so no extern C wrap).
f32 sqrtf2(f32);
f32 atanf2(f32, f32);
void Jac_InitSinTable();
f32 sinf3(f32);
///////////////////////////////////////////////
#endif