| 268 | |
| 269 | |
| 270 | ILubyte SaveBigFloat(ILfloat f) { |
| 271 | #ifdef __LITTLE_ENDIAN__ |
| 272 | iSwapFloat(&f); |
| 273 | #endif |
| 274 | return iwrite(&f, sizeof(ILfloat), 1); |
| 275 | } |
| 276 | |
| 277 | |
| 278 | ILubyte SaveBigDouble(ILdouble d) { |
nothing calls this directly
no test coverage detected