9 lines
148 B
C
9 lines
148 B
C
|
#ifndef SHELL_H_INCLUDED
|
||
|
#define SHELL_H_INCLUDED
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void *run_test(FILE *in, FILE *out, int block);
|
||
|
|
||
|
#endif // SHELL_H_INCLUDED
|