Someone wrote:
*dst++ = *src++; // Copy a word of src to dst while incrementing
both
If I were looking at the code, I'd wonder why a memory move intrinsic
wasn't used (memcpy/memmove) and would have appreciated commentary as
to why it wasn't done.
--Chuck