is this ok in a header file for c?
by errigour from LinuxQuestions.org on (#6NCFH)
Just wonder if I can put that in a header file and use it.
Code:struct a {
struct *b;
};
struct b {
struct *a;
};
Code:struct a {
struct *b;
};
struct b {
struct *a;
};