| 154 | } |
| 155 | |
| 156 | static float GetFloat(cc_uint8* data) { |
| 157 | union IntAndFloat raw; |
| 158 | raw.u = Stream_GetU32_BE(data); |
| 159 | return raw.f; |
| 160 | } |
| 161 | |
| 162 | static void ReadString(cc_uint8** ptr, cc_string* str) { |
| 163 | int i, length = 0; |
no test coverage detected