1  struct foo {
       2  int a,b,c;
       3  };
       4  f(struct foo*a,struct foo*b)
       5  {
       6  *a=*b;
       7  }
       1  struct foo {
       2  int a,b,c;
       3  };
       4  f(struct foo*a,struct foo*b)
       5  {
       6  *a=*b;
       7  }