Yes, but I don't want to send them in a row.
@ your code:
And how to extract them?
Code:
function send(int i1, int i2)
{
	STRING* s;
	str_cpy(s, "");
	str_cat(s, i1);
	str_cat(s, i2);
	send(s);
}
function recieve(STRING* s)
{
	int i1;
	int i2;
	
	i1 = ??;
	i2 = ??;
}