XZL_交换两个字符串
master
@ -231,7 +231,10 @@ void SwapLong(long *x,long *y)
```
void SwapChar(char x[],chary[])
{
char temp[MAX_LEN];
strcpy(temp, x);
strcpy(x, y);
strcpy(y, temp);
}