diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-12-03 13:56:14 +0100 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-12-03 13:56:14 +0100 | 
| commit | 4aec2e1331650cabb966bbf24ed83f76cbbe9912 (patch) | |
| tree | 3d88f426d7bcfb44f448a0bf56adb5cb7db18232 /box_test.c | |
| parent | 083a6363e0b7d5be9850eef56df35d5f1e13f720 (diff) | |
checkpoint
Diffstat (limited to 'box_test.c')
| -rw-r--r-- | box_test.c | 27 | 
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; + +}  | 
