mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
27 lines
448 B
C
27 lines
448 B
C
#ifndef LIBA_MATH_H
|
|
#define LIBA_MATH_H
|
|
|
|
#include "private/macros.h"
|
|
|
|
LIBA_BEGIN_DECLS
|
|
|
|
int isinff(float x);
|
|
int isnanf(float x);
|
|
|
|
float copysignf(float x, float y);
|
|
float cosf(float x);
|
|
float fabsf(float x);
|
|
float floorf(float x);
|
|
float log10f(float x);
|
|
float logf(float x);
|
|
float powf(float x, float y);
|
|
float roundf(float x);
|
|
float scalbnf(float x, int n);
|
|
float sinf(float x);
|
|
float sqrtf(float x);
|
|
float tanf(float x);
|
|
|
|
LIBA_END_DECLS
|
|
|
|
#endif
|