Detaljan opis problema:ubacio sam strtok u skriptu i sada mi izbacuje errore sta da radim a ubacio sam gore ovo
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string <= ' '))
{
index++;
}
new offset = index;
new result;
while ((index < length) && (string > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string;
index++;
}
result[index - offset] = EOS;
return result;
}Dio skripte:
strtokNeke slike/video za lakse dobivanje pomoci(neobavezno):
