[Ajuda] Problemas com strtok
#2

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
Problemas com strtok - by Review - 15.05.2015, 20:22
Re: Nessecito de HELP - by Whoo - 15.05.2015, 20:27
Respuesta: Nessecito de HELP - by Review - 15.05.2015, 20:28
Re: Respuesta: Nessecito de HELP - by Vegassilva - 15.05.2015, 22:00
Re: Respuesta: Nessecito de HELP - by PT - 15.05.2015, 23:33
Re: Problemas com strtok - by JkS - 16.05.2015, 11:12
Re: Problemas com strtok - by PT - 16.05.2015, 22:11

Forum Jump:


Users browsing this thread: 1 Guest(s)