首页 > 代码库 > 自制函数strcpy

自制函数strcpy

void strCpy(char *p1,char *p2){
        while (((*(p1++))=(*(p2++))))) {
            
        }
    }