1#include <stdio.h>
2#include "foo.h"
3
4struct bar
5{
6    int a;
7    int b;
8};
9
10int
11main (int argc, char const *argv[])
12{
13    struct bar b= { 1, 2 };
14
15    foo (&b);
16
17    return 0;
18}
19