aboutsummaryrefslogtreecommitdiff
path: root/c/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/test.h')
-rw-r--r--c/test.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/c/test.h b/c/test.h
new file mode 100644
index 0000000..5565b36
--- /dev/null
+++ b/c/test.h
@@ -0,0 +1,13 @@
+#ifndef TEST_H
+#define TEST_H
+
+struct Test
+{
+ const char* name = {0};
+ char error[64] = {0};
+ Test(const char* name);
+};
+
+int RunTests();
+
+#endif