View Single Post
Mentor
14Nov2008,23:28  
xpi0t0s's Avatar
We're way past the deadline (whichever way the date works) so try this one instead (untested):
Code:
void my_strcpy(char *dest,const char *src)
{
  while (*dest = *(src++)) ;
}