• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 typedef int thing;
2 
3 struct s {
4   int a;
5   int * b;
6   int c[7];
7   int (*d)(void);
8   thing e;
9 };
10 
f(struct s t)11 void f(struct s t) {
12   (void) t;
13 }
14