mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
19 lines
378 B
C
19 lines
378 B
C
#ifndef C_MATH_H_
|
|
#define C_MATH_H_
|
|
|
|
#include "global.h"
|
|
|
|
s16 cM_rad2s(float);
|
|
u16 U_GetAtanTable(float, float);
|
|
s16 cM_atan2s(float, float);
|
|
float cM_atan2f(float, float);
|
|
void cM_initRnd(int, int, int);
|
|
float cM_rnd(void);
|
|
float cM_rndF(float);
|
|
float cM_rndFX(float);
|
|
void cM_initRnd2(int, int, int);
|
|
float cM_rnd2(void);
|
|
float cM_rndF2(float);
|
|
float cM_rndFX2(float);
|
|
|
|
#endif |