#include #include "encrypt.h" int main(void) { char msg[80]; while (fgets(msg, 80, stdin)) { encrypt(msg); printf("%s\n", msg); } return 0; }