summaryrefslogtreecommitdiffstats
path: root/src/runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner.h')
-rw-r--r--src/runner.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runner.h b/src/runner.h
new file mode 100644
index 0000000..c087895
--- /dev/null
+++ b/src/runner.h
@@ -0,0 +1,6 @@
+
+typedef struct Runner Runner;
+
+Runner *createRunner();
+int execute(Runner*, char*);
+void freeRunner(Runner*);