aboutsummaryrefslogtreecommitdiff
path: root/box_test.c
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2024-12-07 19:17:33 +0100
committerRaymaekers Luca <luca@spacehb.net>2025-01-07 18:51:21 +0100
commit0574f5a7c5159a2ae1d7d2182cec982509947db9 (patch)
tree2a9678fd39bcf8ead03c7ee979caf668f2f17892 /box_test.c
parent4aec2e1331650cabb966bbf24ed83f76cbbe9912 (diff)
checkpoint
Diffstat (limited to 'box_test.c')
-rw-r--r--box_test.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/box_test.c b/box_test.c
deleted file mode 100644
index 57663f9..0000000
--- a/box_test.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#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;
-
-}