[Ajuda] Incluir FS no GM
#1

Alguйm me ajuda, mostrando algum tutorial de incluir FS no GM
Eu consegui incluir 1 FS no meu GM
Eu tentei botar outro mas tem umas linhas assim
Quote:

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;

Ai se eu tentar botar no GM dб erro e fecha o programa
Reply


Messages In This Thread
Incluir FS no GM - by Agamaster - 09.12.2013, 17:03
Re: Incluir FS no GM - by PT - 09.12.2013, 17:20
Re: Incluir FS no GM - by Agamaster - 09.12.2013, 17:27
Re: Incluir FS no GM - by PT - 09.12.2013, 17:36
Re: Incluir FS no GM - by Agamaster - 09.12.2013, 17:45

Forum Jump:


Users browsing this thread: 1 Guest(s)