At 19:22 2002-10-9 -0700, you wrote: >Is MemMove comparable to memcpy()?
Actually, its closer to the ISO C library call memmove(). It can be used anywhere memcpy() would be used, but it handles copying between overlapping regions of memory safely. >Is the source still valid after a MemMove? Yes... the "move" doesn't mean that the source data is actually destroyed... that would take extra effort. -- Ben Combee <[EMAIL PROTECTED]> CodeWarrior for Palm OS technical lead Palm OS programming help @ www.palmoswerks.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
