
char*  strcpy ( char *pStr1, char *pStr2 )
{
  int i;
  char *p = pStr1;

  /* Copy all characters */
  for ( i = 0; *pStr2 != 0; i++ )
    *pStr1++ = *pStr2++;

  /* Add '/0' at the end of string */
  *pStr1 = 0;

  return p;
} /* end of strcpy() function */
