измененная версия,для разделения строки не только по пробелу но и любому другому символу:
Code
stock strtok(const string[],seperator[2],&index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= seperator[0]))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > seperator[0]) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
Пример: cmd = strtok(cmdtext,"/",idx);
Автор 009.