| 2061 | } |
| 2062 | |
| 2063 | void fxWriteChunkZero(txMachine* the, txSnapshot* snapshot, txSize size) |
| 2064 | { |
| 2065 | txByte zero = 0; |
| 2066 | while (size > 0) { |
| 2067 | mxThrowIf((*snapshot->write)(snapshot->stream, &zero, sizeof(txByte))); |
| 2068 | size--; |
| 2069 | } |
| 2070 | } |
| 2071 | |
| 2072 | void fxWriteChunks(txMachine* the, txSnapshot* snapshot) |
| 2073 | { |
no outgoing calls
no test coverage detected