summaryrefslogtreecommitdiff
path: root/t/helper/test-tool-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 't/helper/test-tool-utils.h')
-rw-r--r--t/helper/test-tool-utils.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/helper/test-tool-utils.h b/t/helper/test-tool-utils.h
new file mode 100644
index 0000000..6a0e5e0
--- /dev/null
+++ b/t/helper/test-tool-utils.h
@@ -0,0 +1,9 @@
+#ifndef TEST_TOOL_UTILS_H
+#define TEST_TOOL_UTILS_H
+
+struct test_cmd {
+ const char *name;
+ int (*fn)(int argc, const char **argv);
+};
+
+#endif