| 78 | } |
| 79 | |
| 80 | float ReadFloat (uint8_t **stream) |
| 81 | { |
| 82 | union |
| 83 | { |
| 84 | int i; |
| 85 | float f; |
| 86 | } fakeint; |
| 87 | fakeint.i = ReadLong (stream); |
| 88 | return fakeint.f; |
| 89 | } |
| 90 | |
| 91 | void WriteString (const char *string, uint8_t **stream) |
| 92 | { |
no test coverage detected