#include #include #include "output_file.h" void output_file (char* file_path) { FILE* file = freopen(file_path, "r", stdin); if (!file) { fprintf(stderr, "Error opening file: %s\n", file_path); exit(1); } const int str_len = 69; char str[str_len]; while (fgets (str, str_len, stdin)) { puts(str); } }