aboutsummaryrefslogtreecommitdiff
path: root/box_test.c
blob: 57663f9641d6b29498730a4b2287157e195fd2c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;

}