At 7:49 PM -0800 2000/02/23, Derek Kite wrote:
>How does StrCopy work? Does it do a memmove, actually copying the contents of
>a string to another specified location?

Yes. It's basically:

  Char * tmp = dst;
  while (*src) *tmp++ = *src++;
  *tmp = 0;
  return dst;

Regards,

Jim Schram
3Com/Palm Computing
Partner Engineering



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palm.com/devzone/mailinglists.html

Reply via email to