| 200 | } |
| 201 | |
| 202 | ILubyte SaveLittleShort(ILshort s) { |
| 203 | #ifdef __BIG_ENDIAN__ |
| 204 | iSwapShort(&s); |
| 205 | #endif |
| 206 | return iwrite(&s, sizeof(ILshort), 1); |
| 207 | } |
| 208 | |
| 209 | ILubyte SaveLittleUInt(ILuint i) { |
| 210 | #ifdef __BIG_ENDIAN__ |
no test coverage detected