Anyone know a int to char func? (for a variadic func)
#6

If you're expecting "getarg( i , idx);" to return a single letter/character, then yes.

pawn Код:
string[5];
string="test";
print(string);
string[0]=116;
string[1]=101;
string[2]=115;
string[3]=116;
string[4]=EOS;
print(string);
Should return
test
test
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)