06.06.2014, 09:04
Quote:
that's why i asked it here -_-
i'm in doubt is it counted as one cell or two, becouse it's tabulate. And the other like \n (new line) is it counted one cells too? |
However, the newline character is actually a special case. When writing \n (LF - Line Feed) to a text file, it could be converted to \r\n (CRLF- Carriage Return, Line Feed) on Windows, because that is the actual character needed to start a new line. So in that case, \n would be compiled down to two bytes - though, it's not really something for you to worry about as it doesn't actually happen until output to the actual file.
I'm actually taking this knowledge from C/C++, but Pawn should follow a similar method in order to be a portable solution across multiple operating systems.
Now, what do you mean when you say "and i want to waste my memory"? I believe you could do that quicker by making your function call itself indefinitely
