EOS Symbol
#1

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:

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;
}
?
Reply
#2

Guess:
EOS stands for (E)nd (O)f (S)tring and is a signal for pawn, that the string ends at this position. All following chars in the string are ignored. E.g. strlen searches for EOS to determine the length of a string. Its value is '\0' i think.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)