[ajuda] 2 erros
#1

Код:
C:\Users\AsR\Servidores\FS\helpers.pwn(490) : error 021: symbol already defined: "strtok"
C:\Users\AsR\Servidores\FS\helpers.pwn(504) : error 047: array sizes do not match, or destination array is too small
Linhas:

Код:
489:    strtok(const string[], &index)
490: {
491:         	new length = strlen(string);
492:	    while ((index < length) && (string[index] <= ' '))
493:	    {
494:		    index++;
495:	    }
496:	    new offset = index;
497:     new result[20];
498:	    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
499:	    {
500:		    result[index - offset] = string[index];
501:		    index++;
502:	    }
503:	    result[index - offset] = EOS;
504:	    return result;
505: }
Ajuda?
Reply


Messages In This Thread
[ajuda] 2 erros - by Panico622 - 12.03.2012, 20:08
Re: [ajuda] 2 erros - by humildadeforever - 12.03.2012, 20:10
Re: [ajuda] 2 erros - by DouglasRodrigues - 12.03.2012, 20:13
Re: [ajuda] 2 erros - by Skun Fly - 12.03.2012, 20:14
Re: [ajuda] 2 erros - by humildadeforever - 12.03.2012, 20:19
Re: [ajuda] 2 erros - by DouglasRodrigues - 12.03.2012, 20:20
Re: [ajuda] 2 erros - by Skun Fly - 12.03.2012, 20:27
Re: [ajuda] 2 erros - by Panico622 - 12.03.2012, 20:28

Forum Jump:


Users browsing this thread: 1 Guest(s)