21.12.2010, 10:45
I already searched in sa-mp wiki, sa-mp foruns and others, but i did not find, what is EOS Symbol and how i can use it ?
Here a example of this symbol:
?
Here a example of this symbol:
pawn Код:
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; /////Here xD
return result;
}