#ifndef FLOAT_H_ #define FLOAT_H_ #include "math.h" float _fneg(float f); float _fand(float f1, float f2); char *_ftostr(char *d, float s); char *_ftoa(char *d, float s); float _ctof(char c); float _utof(unsigned int c); float _stof(signed int c); #endif