]> Shamusworld >> Repos - rmac/blob - fltpoint.h
Partial fix for bug #108 (Fixup cleanups).
[rmac] / fltpoint.h
1 //
2 // Cross-platform floating point handling
3 //
4 // by James Hammons
5 // (C) 2018 Underground Software
6 //
7
8 #include <stdint.h>
9
10 uint32_t FloatToIEEE754(float f);
11 uint64_t DoubleToIEEE754(double d);
12 void DoubleToExtended(double d, uint8_t out[]);
13