aboutsummaryrefslogtreecommitdiffstats
path: root/test/twbctf.h
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-01-19 21:47:52 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2015-01-19 22:18:21 +0100
commitbd348a50e65b9ef26b81998bf248480edaa7a4f2 (patch)
tree7f66a65633a5b177e5f64f2414b7585c510b305a /test/twbctf.h
parentf3fedce6231c135d910b114c845d9ccc47f91ee6 (diff)
downloadsds-bd348a50e65b9ef26b81998bf248480edaa7a4f2.tar.xz
Move tests to test/
Diffstat (limited to 'test/twbctf.h')
-rw-r--r--test/twbctf.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/twbctf.h b/test/twbctf.h
new file mode 100644
index 0000000..c0789cc
--- /dev/null
+++ b/test/twbctf.h
@@ -0,0 +1,14 @@
+#ifndef TWBCTF_H
+#define TWBCTF_H
+
+// Libraries //
+#include <stdbool.h>
+
+typedef bool (* test_p) (void);
+
+struct test {
+ char * desc;
+ test_p func;
+};
+
+#endif