Exemplo n.º 1
0
void main(void)
{
	int c;
	while ((c = getchar()) != EOF)
		putchar(rot13c(c));
}
Exemplo n.º 2
0
void rot13(char *buf, char *in)
{
	while (*in)
		*buf++ = rot13c(*in++);
	*buf = 0;
}