At 01:46 PM 6/12/00 -0400, you wrote:
A possibly
faster way to implement this loop is:
memcpy(Mem + addr, pstrBuffer, iLength);
Or, if it's binary, why not read directly into Mem and
skip the extra buffer all together. Something like:
fread (Mem + addr, 1, iLength, pFile);
I agree. I was going to suggest that but the original code
didn't show reading the data in so I didn't know if additional
checks were being made to insure it was valid before placing
it in "memory".
Regards,
Bob