Some help please
#2

There were some missing brackets

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
Some help please - by Exlivebs - 08.11.2016, 17:00
Re: Some help please - by PeanutButter - 08.11.2016, 17:35
Re: Some help please - by Exlivebs - 08.11.2016, 18:56
Re: Some help please - by MikeB - 08.11.2016, 19:22
Re: Some help please - by Shaheen - 08.11.2016, 19:45

Forum Jump:


Users browsing this thread: 1 Guest(s)