1 #include <ccan/structeq/structeq.h>
2 #include <ccan/tap/tap.h>
12 /* This is how many tests you plan to run */
17 ok1(structeq(&a, &a));
20 ok1(structeq(&a, &b));
23 ok1(!structeq(&a, &b));
25 /* This exits depending on whether all tests passed */