19 #define X_MAX(x, y) (((x) > (y)) ? (x) : (y))
28 #define X_MIN(x, y) (((x) < (y)) ? (x) : (y))
35 #define X_E 2.7182818284
41 #define X_PI 3.1415926535
82long double x_maxl(
long double a,
long double b);
123long double x_minl(
long double a,
long double b);
153long double x_powl(
long double x,
long double y);
long double x_minl(long double a, long double b)
get min long double between a and b
int x_min(int a, int b)
get min int between a and b
float x_minf(float a, float b)
get min float between a and b
float x_maxf(float a, float b)
get max float between a and b
double x_mind(double a, double b)
get min double between a and b
int x_max(int a, int b)
get max int between a and b
double x_sqrt(double x)
compute the square root of x
double x_maxd(double a, double b)
get max double between a and b
double x_pow(double x, double y)
x raise to the power of y
long double x_sqrtl(long double x)
compute the square root of x
long double x_powl(long double x, long double y)
x raise to the power of y
long double x_maxl(long double a, long double b)
get max long double between a and b
float x_sqrtf(float x)
compute the square root of x
float x_powf(float x, float y)
x raise to the power of y