21.11.2009, 09:22
strtok one?
11600 line is {
the full is
Quote:
C:\Documents and Settings\Ingrid\Desktop\MRP\gamemodes\TPGSERVER.pw n(11600) : error 021: symbol already defined: "strtok" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. |
the full is
Quote:
stock strtok(const string[], &index,seperator=' ') { new length = strlen(string); new offset = index; new result[128]; while ((index < length) && (string[index] != seperator) && ((index - offset) < (sizeof(result) - 1))) { result[index - offset] = string[index]; index++; } result[index - offset] = EOS; if ((index < length) && (string[index] == seperator)) { index++; } return result; } |