umka/shell.h

16 lines
242 B
C
Raw Normal View History

#ifndef SHELL_H_INCLUDED
#define SHELL_H_INCLUDED
#include <stdio.h>
2022-05-29 17:17:00 +02:00
struct shell_ctx {
FILE *fin;
FILE *fout;
int reproducible;
2022-05-30 00:08:15 +02:00
const char *hist_file;
2022-05-29 17:17:00 +02:00
};
void *run_test(struct shell_ctx *ctx);
#endif // SHELL_H_INCLUDED