| 130 | } |
| 131 | |
| 132 | ILdouble GetLittleDouble() { |
| 133 | ILdouble d; |
| 134 | iread(&d, sizeof(ILdouble), 1); |
| 135 | #ifdef __BIG_ENDIAN__ |
| 136 | iSwapDouble(&d); |
| 137 | #endif |
| 138 | return d; |
| 139 | } |
| 140 | |
| 141 | ILushort GetBigUShort() { |
| 142 | ILushort s; |
nothing calls this directly
no test coverage detected