C:\Users\Anik\Desktop\SRP1\gamemodes\SRP.pwn(17201) : error 021: symbol already defined: "strtok"
C:\Users\Anik\Desktop\SRP1\gamemodes\SRP.pwn(17216) : error 047: array sizes do not match, or destination array is too small
Die Betreoffenen Zeilen sehen so aus.
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
Die Erste Geschweifte klammer ist zeile 17201 (hier zeile 2)
Jetzt der aus Zeile 17216:
strtok(const string[], &index)
{
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;
return result;
}
Das return result; ist der Error