[Ajuda] Erros na compilaзгo
#3

Bom tava olhando nos topicos... ai vi que tinha q add
Код:
 
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;
}
adicionei isso e compilo certinho ^^ mas vlw!
qualquer coisa eu posto aqui de volta
Reply


Messages In This Thread
[Resolvido] Erros na compilaзгo - by leandrovisk - 10.12.2010, 06:26
Re: [Ajuda] Erros na compilaзгo - by Rodrigo_LosT - 10.12.2010, 06:43
Re: [Ajuda] Erros na compilaзгo - by leandrovisk - 10.12.2010, 06:48

Forum Jump:


Users browsing this thread: 1 Guest(s)