04.05.2017, 18:32
admin.pwn(1870) : error 021: symbol already defined: "strtok"
admin.pwn(1884) : error 047: array sizes do not match, or destination array is too small
admin.pwn(1884) : error 047: array sizes do not match, or destination array is too small
Код:
strtok(const string[], &index) linha:1870 { new length = strlen(string); while ((index < length) && (string[index] <= ' ')) { index++; } new offset = index; new result[20]; while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1))) { result[index - offset] = string[index]; index++; } result[index - offset] = EOS; linha: 1884 return result; }