EOS Symbol - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: EOS Symbol (
/showthread.php?tid=201458)
EOS Symbol - rjjj - 21.12.2010
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;
}
?
Re: EOS Symbol -
Mauzen - 21.12.2010
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.