#ifndef SHELL_H_INCLUDED #define SHELL_H_INCLUDED #include struct shell_ctx { FILE *fin; FILE *fout; int reproducible; const char *hist_file; }; void *run_test(struct shell_ctx *ctx); #endif // SHELL_H_INCLUDED