]> Shamusworld >> Repos - rmac/blob - fltpoint.h
Lots of fixes for floating point handling; version now at 1.11.0.
[rmac] / fltpoint.h
1 //
2 // Cross-platform floating point handling
3 //
4
5 #include <stdint.h>
6
7 uint32_t FloatToIEEE754(float f);
8 uint64_t DoubleToIEEE754(double d);
9 void DoubleToExtended(double d, uint8_t out[]);
10