09.03.2010, 13:14
Quote:
Originally Posted by DzonS
Код:
*\SWRP.pwn(17786) : error 025: function heading differs from prototype *SWRP.pwn(17787) : error 021: symbol already defined: "strtok" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Errors. Код:
strtok(string[], &idx, seperator = ' ') { new ret[128], i = 0, len = strlen(string); while(string[idx] == seperator && idx < len) idx++; while(string[idx] != seperator && idx < len) { ret[i] = string[idx]; i++; idx++; } while(string[idx] == seperator && idx < len) idx++; return ret; } |