diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2025-03-19 14:00:00 +0100 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-03-19 14:00:00 +0100 |
commit | 0247a8d70ad35c1b0e0913c35e977b9aebe23de5 (patch) | |
tree | 2a9678fd39bcf8ead03c7ee979caf668f2f17892 /box_test.c | |
parent | 23b0098fb6aee9fcc182424270a8a24c03b79c49 (diff) |
Administritavia
Diffstat (limited to 'box_test.c')
-rw-r--r-- | box_test.c | 27 |
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; - -} |