| 228 | } |
| 229 | |
| 230 | ILubyte SaveLittleDouble(ILdouble d) { |
| 231 | #ifdef __BIG_ENDIAN__ |
| 232 | iSwapDouble(&d); |
| 233 | #endif |
| 234 | return iwrite(&d, sizeof(ILdouble), 1); |
| 235 | } |
| 236 | |
| 237 | |
| 238 | ILubyte SaveBigUShort(ILushort s) { |
nothing calls this directly
no test coverage detected