[Ajuda] ERRO
#4

Coloca no final do GM:

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
ERRO - by maxblaya01 - 03.09.2015, 18:51
Re: ERRO - by SepZ - 03.09.2015, 18:56
Re: ERRO - by maxblaya01 - 03.09.2015, 19:43
Re: ERRO - by [BOPE]Seu._.Madruga - 03.09.2015, 20:21
Re: ERRO - by maxblaya01 - 03.09.2015, 20:53

Forum Jump:


Users browsing this thread: 1 Guest(s)