| 447 | } |
| 448 | |
| 449 | cc_result Stream_ReadU32_LE(struct Stream* s, cc_uint32* value) { |
| 450 | cc_uint8 data[4]; cc_result res; |
| 451 | if ((res = Stream_Read(s, data, 4))) return res; |
| 452 | *value = Stream_GetU32_LE(data); return 0; |
| 453 | } |
| 454 | |
| 455 | cc_result Stream_ReadU32_BE(struct Stream* s, cc_uint32* value) { |
| 456 | cc_uint8 data[4]; cc_result res; |
no test coverage detected