[Ajuda] Ajuda no compiler
#4

Quote:
Originally Posted by minimessi10
Посмотреть сообщение
se eu excluo uma o paen trava e nao compila se eu tira outra da erro e pede pra tirar essa ai da linha 18182 .-. alguem ajuda ae
tгo ta '-'

apague as duas e coloque somente essa:

pawn Код:
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;
}
Reply


Messages In This Thread
Ajuda no compiler - by minimessi10 - 11.03.2013, 23:01
Re: Ajuda no compiler - by Wooziesan - 11.03.2013, 23:34
Re: Ajuda no compiler - by minimessi10 - 13.03.2013, 21:46
Re: Ajuda no compiler - by Maklister - 13.03.2013, 21:51
Re: Ajuda no compiler - by minimessi10 - 13.03.2013, 22:25
Re: Ajuda no compiler - by Maklister - 13.03.2013, 22:28
Re: Ajuda no compiler - by minimessi10 - 13.03.2013, 22:43

Forum Jump:


Users browsing this thread: 1 Guest(s)