R
riccardo
Hi,
I've
typedef struct {
foo2 a;
} foo1;
typedef struct {
foo1 b;
} foo2;
foo2 is not defined yet when used to define foo1.
Placing the foo2 definition before foo1 doesn't help of course.
How can I solve this in a clean way?
R
I've
typedef struct {
foo2 a;
} foo1;
typedef struct {
foo1 b;
} foo2;
foo2 is not defined yet when used to define foo1.
Placing the foo2 definition before foo1 doesn't help of course.
How can I solve this in a clean way?
R