Esempio n. 1
0
static bool out(char ch)
{
	if (prn_hdl == -2)
		Cauxout(ch);
	else if (prn_hdl == -3)
		Cprnout(ch);
	else
		Fwrite(prn_hdl, 1, &ch);
	return TRUE;
}
Esempio n. 2
0
send(char c)
{
    Cauxout(c);
}
Esempio n. 3
0
void sendstring(char *s) {
	while(*s) {
		Cauxout(*(s++));
	};
}