#include #include #include "typo.h" int main(void) { for (;;) { int c = getchar(); if (c == EOF) break; putchar(typo_phrase(c)); } return EXIT_SUCCESS; }