發新話題
打印

[研究帖]SP寫法分析 (更新在#7)

[Close]
複製內容到剪貼板
代碼:
SwapString(PrimaryName[client], SecondaryName[client]);
SwapString(String:a[LEN64], String:b[LEN64])
{
decl String:t[LEN64];
strcopy(t, LEN64, a);
strcopy(a, LEN64, b);
strcopy(b, LEN64, t);
}
will this looks better?
use 代碼

[ 本帖最後由 carlcarlto 於 2011-9-15 16:27 編輯 ]

TOP

發新話題