3 Errors im GM
Hallo Leute
Ich habe 3 Errors in meinem GM und frag mich wie ich die wegbekomme
: error 025: function heading differs from prototype
: error 021: symbol already defined: "strtok"
: error 047: array sizes do not match, or destination array is too small
: warning 203: symbol is never used: "ret_memcpy"
Pawn-Quelltext
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}