09.12.2013, 17:03
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
Ai se eu tentar botar no GM dб erro e fecha o programa
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; |