Write the header of an IFF chunk and leave space for the length field.
| 400 | // Write the header of an IFF chunk and leave space |
| 401 | // for the length field. |
| 402 | void StartChunk (int id, uint8_t **stream) |
| 403 | { |
| 404 | WriteLong (id, stream); |
| 405 | lenspot = *stream; |
| 406 | *stream += 4; |
| 407 | } |
| 408 | |
| 409 | // Write the length field for the chunk and insert |
| 410 | // pad byte if the chunk is odd-sized. |
nothing calls this directly
no test coverage detected