SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_putchar.spc

This is an example of how to use the putchar function.

task main()
{
int y;
y = putchar('\n');
y = putchar('\t');
y = putchar('\r');
y = putchar('X');
}