diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-19 21:47:52 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-19 22:18:21 +0100 |
commit | bd348a50e65b9ef26b81998bf248480edaa7a4f2 (patch) | |
tree | 7f66a65633a5b177e5f64f2414b7585c510b305a /test/twbctf.h | |
parent | f3fedce6231c135d910b114c845d9ccc47f91ee6 (diff) | |
download | sds-bd348a50e65b9ef26b81998bf248480edaa7a4f2.tar.xz |
Move tests to test/
Diffstat (limited to 'test/twbctf.h')
-rw-r--r-- | test/twbctf.h | 14 |
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 |