aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/math.h
blob: 64c46e7616cc36e65f24f20d1b4361163d2b6396 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#pragma once

// TODO

#define INFINITY	0

#define NAN	0

#define HUGE_VAL 0
#define HUGE_VALF 0
#define HUGE_VALL 0

float fabsf(float x);

       float cosf(float x);
       float sinf(float x);
       float tanf(float x);

       float acosf(float x);
       float asinf(float x);
float atan2f(float y, float x);

float floorf(float x);
float ceilf(float x);
float fmodf(float x, float y);
float sqrtf(float x);
float logf(float x);
float log2f(float x);
float log10f(float x);
float expf(float x);
float frexpf(float x, int *exp);
       float powf(float x, float y);





/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/