Como arruma esses 2 erros ?
#4

Tenta.
PHP код:
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
Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 12:01
Re: Como arruma esses 2 erros ? - by StrondA_ - 26.08.2011, 12:10
Re: Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 12:13
Re: Como arruma esses 2 erros ? - by [R] ousenber [K] - 26.08.2011, 12:24
Re: Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 12:35
Re: Como arruma esses 2 erros ? - by StrondA_ - 26.08.2011, 12:56
Re: Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 13:57

Forum Jump:


Users browsing this thread: 2 Guest(s)