umka/shell.h

16 lines
242 B
C

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