| 12345678910111213141516171819 |
- #include "container_of/container_of.h"
- #include "tap/tap.h"
- struct foo {
- int a;
- char b;
- };
- int main(int argc, char *argv[])
- {
- struct foo foo = { .a = 1, .b = 2 };
- int *intp = &foo.a;
- char *charp = &foo.b;
- plan_tests(2);
- ok1(container_of(intp, struct foo, a) == &foo);
- ok1(container_of(charp, struct foo, b) == &foo);
- return exit_status();
- }
|