float: Add class instances for Float.
[altfloat.git] / cfloat.h
blob468f234ded7b3f78f7c0c1a95dff8bae19a96278
1 #ifndef CFLOAT_H_
2 #define CFLOAT_H_
4 int double_format(char *buf, const char *fmt, double val);
5 double double_signum(double val);
6 float float_signum(float val);
7 int double_classify(double val);
8 int float_classify(float val);
9 int double_compare(double a, double b);
10 int float_compare(float a, float b);
12 #endif