Files
Upsilon/liba/include/math.h
Romain Goyet 5befa0f0a8 [liba] Add isinff and isnanf
Change-Id: I7141c6aef7dc8fed3538f157f9c1fcec76d951d1
2016-10-25 11:01:21 +02:00

26 lines
425 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 scalbnf(float x, int n);
float sinf(float x);
float sqrtf(float x);
float tanf(float x);
LIBA_END_DECLS
#endif