aboutsummaryrefslogtreecommitdiffstats
path: root/src/twbctf.h
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-05 21:48:40 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-05 21:52:57 +0100
commit229bbcec6db6fcad3004c6906426dc621a344e59 (patch)
tree6675e412d3b3697b3aeb19891cdf440f6797feff /src/twbctf.h
parent3bb51609a53802c43751dcdf56b694ffe0bc9c5f (diff)
downloadsds-229bbcec6db6fcad3004c6906426dc621a344e59.tar.xz
Replace testsuite with one based on twbctf
Diffstat (limited to 'src/twbctf.h')
-rw-r--r--src/twbctf.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/twbctf.h b/src/twbctf.h
new file mode 100644
index 0000000..c0789cc
--- /dev/null
+++ b/src/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