diff --git a/src/caesarcrypt.c b/src/caesarcrypt.c index d15c165..10def7f 100644 --- a/src/caesarcrypt.c +++ b/src/caesarcrypt.c @@ -13,8 +13,6 @@ #include #include -#include -#include int main() @@ -28,7 +26,7 @@ int main() char buf[4]; fgets(buf, 3, stdin); int choice = strtol(buf, NULL, 10); - + fputs("Enter your message text: ", stdout); char* msg = dyninput_str(INT64_MAX); if (!msg)