| 200 | // Set a given number of bytes to zero given a starting pointer. |
| 201 | |
| 202 | void ClearB(pbyte pb, int cb) |
| 203 | { |
| 204 | while (cb-- > 0) |
| 205 | *pb++ = 0; |
| 206 | } |
| 207 | |
| 208 | |
| 209 | // Copy a given number of bytes from one location to another. |
no outgoing calls
no test coverage detected