[Ajuda]Errors Como Conserto?
#4

Coloque isto no final do seu 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
[Ajuda]Errors Como Conserto? - by francisco_alves - 01.08.2011, 21:49
Re: [Ajuda]Errors Como Conserto? - by JonathanFeitosa - 01.08.2011, 21:52
Re: [Ajuda]Errors Como Conserto? - by francisco_alves - 01.08.2011, 22:03
Re: [Ajuda]Errors Como Conserto? - by Shadoww5 - 01.08.2011, 22:09
Re: [Ajuda]Errors Como Conserto? - by francisco_alves - 01.08.2011, 22:20

Forum Jump:


Users browsing this thread: 1 Guest(s)