1 #ifndef __HAVE_ARCH_STRCPY 2 /** 3 * strcpy - Copy a %NUL terminated string 4 * @dest: Where to copy the string to 5 * @src: Where to copy the string from 6 */ 7 char *strcpy(char *dest, const char *src) 8 { 9 char *tmp = dest; 10 11 while ((*dest++ = *src++) != '