aboutsummaryrefslogtreecommitdiff
path: root/c/test.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-15 22:22:20 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-15 22:22:20 +0200
commit8877627ee3fcd5a8f0ce2fcccec7688973e9cb2d (patch)
tree6a57fcb19aa77dfece89b000ae656c9549e7c156 /c/test.h
parent509c461498f0e68a62c004778df890d56ebb2a09 (diff)
downloadEpisodeBrowser-8877627ee3fcd5a8f0ce2fcccec7688973e9cb2d.tar.gz
Add testing system.HEADmaster
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