strcpy.h:
1 #ifndef STRCPY_H 2 #define STRCPY_H 3 4 #include <stdio.h> 5 6 char *cat_strcpy(char *dst, const char *src) { 7 if (NULL == src || NULL == src) 8 return NULL; 9 10 char *s = (char *)src, *d = dst; 11 12 while ((*d++ = *s++) != '