03.11.2011, 00:09
Quote:
Is there a way to reverse words? So to check if a player typed a word reversed...
|
pawn Code:
stock ReverseText(szText[]) {
for(new i = 0, j = strlen(szText) - 1; i < j; ++i, --j) {
szText[i] ^= szText[j], szText[j] ^= szText[i], szText[i] ^= szText[j];
}
}