Hi guys, I would like to know if it is possible to declare two structures where struct1 has a pointer to struct2 and struct2 has a pointer to struct1, if it is possible how they should be declared?
typedef struct _AAA {
BBB *p_bbb;
} AAA;
typedef struct _BBB {
AAA *p_aaa;
} BBB;
Thanks
typedef struct _AAA {
BBB *p_bbb;
} AAA;
typedef struct _BBB {
AAA *p_aaa;
} BBB;
Thanks