aboutsummaryrefslogtreecommitdiff
path: root/box_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'box_test.c')
-rw-r--r--box_test.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/box_test.c b/box_test.c
new file mode 100644
index 0000000..57663f9
--- /dev/null
+++ b/box_test.c
@@ -0,0 +1,27 @@
+#include <stdio.h>
+#include <stdbool.h>
+
+#define Assert(expr) if (!(expr)) return false;
+
+char
+DrawingTest()
+{
+ Assert(2 == 3);
+
+ return true;
+}
+
+char
+FooTest()
+{
+ return false;
+}
+
+
+int
+main(int Argc, char* Argv[])
+{
+ char *i(void);
+ i = &DrawingTest;
+
+}