Quote:
Originally Posted by X-olent
I read somewhere that the best way to clear a string is to set the first character to ^0.
Example:
Code:
static sString[32];
sString[0] ='^0';
|
and then:
Code:
client_print(0, print_chat, sString[1]);
In other words it clears only first symbol. But if print will start from it - it wont print nothing. And isn't it 0x00 or just 0?
__________________